제출 #369556

#제출 시각아이디문제언어결과실행 시간메모리
369556sadMouse (info1cup19_mouse)C++14
컴파일 에러
0 ms0 KiB
//#include "grader.h" #include <bits/stdc++.h> #define pb push_back using namespace std; void solve(int N) { vector<int>v; for(int i=1;i<N+1;i++)v.pb(i); int x=query(v); for(int i=1;i<N+1;i++) { for(int j=i+1;j<N+1;j++) { swap(v[i-1],v[j-1]); int y=query(v); if(x!=y+2) { swap(v[i-1],v[j-1]); } } } query(v); }

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

mouse.cpp: In function 'void solve(int)':
mouse.cpp:10:11: error: 'query' was not declared in this scope
   10 |     int x=query(v);
      |           ^~~~~