제출 #308016

#제출 시각아이디문제언어결과실행 시간메모리
308016TemmieMemory (IOI10_memory)C++17
컴파일 에러
0 ms0 KiB
#include "memory.h" #include <bits/stdc++.h> void play() { std::vector <std::vector <int>> pos(25); for (int i = 1; i <= 50; i++) { char c = faceup(i); pos[c - 'A'].push_back(i); } for (auto v : pos) faceup(v[0]), faceup(v[1]); }

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

memory.cpp: In function 'void play()':
memory.cpp:8:12: error: 'faceup' was not declared in this scope
    8 |   char c = faceup(i);
      |            ^~~~~~
memory.cpp:11:21: error: 'faceup' was not declared in this scope
   11 |  for (auto v : pos) faceup(v[0]), faceup(v[1]);
      |                     ^~~~~~