# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
364073 | 2021-02-08T08:10:21 Z | yasseenkamel | CONSUL (info1cup19_consul) | C++14 | 52 ms | 2028 KB |
#include "grader.h" //#include "grader.cpp" bool vis[1000000005]; void solve(int n){ for(int i = 1 ; i <= n ; i ++){ int x = kth(i); if(!vis[x]){ int y = cnt(x); if(y > n / 3){ say_answer(x); break; } } } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 1388 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 52 ms | 2028 KB | Output is correct |
2 | Incorrect | 34 ms | 924 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 11 ms | 492 KB | Too many queries |
2 | Halted | 0 ms | 0 KB | - |