# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
65249 | 2018-08-07T07:45:42 Z | 검수컵(#1978, imsifile) | 마법 다우징 (FXCUP3_magic) | C++ | 2 ms | 376 KB |
#include "dowsing.h" int row[111], sr, col[111], sc, dr, dc; void FindTreasure(int N) { for(int i=1; i<=N; i++) row[i] = Detect(i,1), sr += row[i]; for(int i=1; i<=N; i++) col[i] = Detect(1,i), sc += col[i]; for(int i=1; i<=N; i++){ if(row[i] == 1) dr=i; } for(int i=1; i<=N; i++){ if(col[i] == 1) dc=i; } Report(dr, dc); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Correct : C = 6 |
2 | Runtime error | 2 ms | 256 KB | Execution failed because the return code was nonzero |
3 | Halted | 0 ms | 0 KB | - |