제출 #390890

#제출 시각아이디문제언어결과실행 시간메모리
390890SortingMemory (IOI10_memory)C++17
컴파일 에러
0 ms0 KiB
#include "grader.h" #include "memory.h" #include <bits/stdc++.h> using namespcae std; const int N = 50; void play() { int a[N + 1]; for(int i = 1; i <= N; ++i) a[i] = faceup(i); for(int i = 1; i <= N; ++i){ for(int j = i + 1; j <= N; ++j){ if(a[i] == a[j]){ faceup(i); faceup(j); } } } }

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

memory.cpp:5:7: error: expected nested-name-specifier before 'namespcae'
    5 | using namespcae std;
      |       ^~~~~~~~~