Submission #249647

#TimeUsernameProblemLanguageResultExecution timeMemory
249647dvdg6566Holding (COCI20_holding)C++14
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef vector<int> vi; typedef pair<int,int> pi; typedef vector<pi> vpi; typedef long double ld; #define pb emplace_back #define mp make_pair #define lb lower_bound #define ub upper_bound #define ALL(x) x.begin(), x.end() #define SZ(x) (ll)x.size() #define f first #define s second const ll MAXN=100; const ll MAXK=16000000; const ll INF = 1e9; const ll MOD = 1e9+7; int dp[MAXN][MAXN][10100]; int main(){ memset(dp,-1,sizeof(dp)); cout<,1; }

Compilation message (stderr)

holding.cpp: In function 'int main()':
holding.cpp:25:7: error: expected primary-expression before ',' token
  cout<,1;
       ^