제출 #687815

#제출 시각아이디문제언어결과실행 시간메모리
687815grossly_overconfidentMemory (IOI10_memory)C++17
컴파일 에러
0 ms0 KiB
#include "grader.h" #include "memory.h" #include <bits/stdc++.h> using namespace std; void play() { map<char, vector<int>> v; faceup(); string s = "abcdefghijklmnopqrstuvwxyz"; for (int i = 1; i <= 50; ++i) { char r = faceup(i); v[r].push_back(i); } for (char j : s) { for (int k : v[j]) { faceup(k); } } }

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

memory.cpp: In function 'void play()':
memory.cpp:7:12: error: too few arguments to function 'char faceup(int)'
    7 |     faceup();
      |            ^
In file included from memory.cpp:1:
grader.h:1:6: note: declared here
    1 | char faceup(int C);
      |      ^~~~~~