제출 #220173

#제출 시각아이디문제언어결과실행 시간메모리
220173kshitij_sodaniCluedo (IOI10_cluedo)C++17
컴파일 에러
0 ms0 KiB
#include <iostream> #include <vector> #include <algorithm> #include <cassert> #include <cstdio> #include <cluedo.h> using namespace std; #define pb push_back #define a first #define b second void solve(){ int i=1; int j=1; int k=1; while(true){ int xx=Theory(i,j,k); if(xx==0){ return; } if(xx==1){ i+=1; } if(xx==2){ j+=1; } if(xx==3){ k+=1; } } }

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

cluedo.cpp: In function 'void solve()':
cluedo.cpp:16:10: error: 'Theory' was not declared in this scope
   int xx=Theory(i,j,k);
          ^~~~~~
cluedo.cpp:16:10: note: suggested alternative: 'short'
   int xx=Theory(i,j,k);
          ^~~~~~
          short