fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define MAX 100000008
  4. #define ll long long
  5.  
  6. ll dp[MAX];
  7.  
  8. int main() {
  9. memset(dp, 0x3f, sizeof dp);
  10. }
Success #stdin #stdout 0.13s 784704KB
stdin
Standard input is empty
stdout
Standard output is empty