제출 #956593

#제출 시각아이디문제언어결과실행 시간메모리
956593DeltaStructCluedo (IOI10_cluedo)C++17
컴파일 에러
0 ms0 KiB
#include "cluedo.h" #include <bits/stdc++.h> using namespace std; void Solve(){ vector<int> A(3,1); int r; do { r = Theory(A[0],A[1],A[2]); if (r) ++A[r-1]; } while(r); }

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

cluedo.cpp: In function 'void Solve()':
cluedo.cpp:6:39: error: 'Theory' was not declared in this scope
    6 |   vector<int> A(3,1); int r; do { r = Theory(A[0],A[1],A[2]); if (r) ++A[r-1]; } while(r);
      |                                       ^~~~~~