제출 #796289

#제출 시각아이디문제언어결과실행 시간메모리
796289I_Love_EliskaM_Memory (IOI10_memory)C++14
컴파일 에러
0 ms0 KiB
#include "memory.h" #include <bits/stdc++.h> using namespace std; #define forn(i,n) for(int i=0;i<n;++i) char a[50]; int vis[50]; void play() { int n=50; forn(i,n) a[i]=faceup(i+1); forn(i,n) { if (vis[i]) continue; forn(j,n) { if (a[i]==a[j]) { vis[i]=vis[j]=1; faceup(i+1); faceup(j+1); } } } }

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

memory.cpp: In function 'void play()':
memory.cpp:10:19: error: 'faceup' was not declared in this scope
   10 |    forn(i,n) a[i]=faceup(i+1);
      |                   ^~~~~~
memory.cpp:16:13: error: 'faceup' was not declared in this scope
   16 |             faceup(i+1);
      |             ^~~~~~