제출 #1210450

#제출 시각아이디문제언어결과실행 시간메모리
1210450Vale_sMemory (IOI10_memory)C11
컴파일 에러
0 ms0 KiB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;

void play() {
    char c[51];
    for (int i=1;i<=50;i++) {
        c[i]=faceup(i);
    }
    for (char l='A';l<='Y';l++) {
        vector<int> posi;
        for (int i=1;i<=50;i++) {
            if (c[i]==l) {
                posi.push_back(i);
            }
        }
        faceup(posi[0]);
        faceup(posi[1]);
    }
}

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

memory.c:2:10: fatal error: bits/stdc++.h: No such file or directory
    2 | #include <bits/stdc++.h>
      |          ^~~~~~~~~~~~~~~
compilation terminated.