# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
645665 | 2022-09-27T15:37:09 Z | notme | CONSUL (info1cup19_consul) | C++17 | 56 ms | 208 KB |
#include<bits/stdc++.h> #define endl '\n' #include "grader.h" using namespace std; int kth(int k); void say_answer(int k); int cnt(int k); void solve(int N) { int i, num, times; for (int i = 1; i <= N; ++ i) { num = kth(i); times = cnt(num); if(times > N/3) { say_answer(num); return; } } say_answer(-1); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 20 ms | 208 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 56 ms | 208 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 208 KB | Too many queries |
2 | Halted | 0 ms | 0 KB | - |