Submission #18581

#TimeUsernameProblemLanguageResultExecution timeMemory
18581jjhstop뚊 (kriii3_EE)C++98
Compilation error
0 ms0 KiB
#include<stdio.h.> char src[10][10]; char tgt[10][20]; int main() { int N, M; freopen("input.txt", "r", stdin); scanf("%d %d ", &N, &M); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { scanf("%c ", &src[i][j]); } } for (int i = 0; i < N; i++) { for (int j = 0; j < 2*M; j++) { scanf("%c", &tgt[i][j]); if (src[i][j / 2] != tgt[i][j]) { printf("Not Eyfa"); return 0; } } } printf("Eyfa"); }

Compilation message (stderr)

ee.cpp:1:19: fatal error: stdio.h.: 그런 파일이나 디렉터리가 없습니다
 #include<stdio.h.>
                   ^
compilation terminated.