Submission #249647

# Submission time Handle Problem Language Result Execution time Memory
249647 2020-07-15T13:20:34 Z dvdg6566 Holding (COCI20_holding) C++14
Compilation error
0 ms 0 KB
#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

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