제출 #249647

#제출 시각아이디문제언어결과실행 시간메모리
249647dvdg6566Holding (COCI20_holding)C++14
컴파일 에러
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; }

컴파일 시 표준 에러 (stderr) 메시지

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