# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
315029 | 2020-10-22T01:00:18 Z | daniel920712 | CONSUL (info1cup19_consul) | C++14 | 2 ms | 256 KB |
#include "grader.h" #include <map> using namespace std; map < int , int > all; void solve(int n) { int i,t,big,xx=n,x; for(i=1;i<=n;i++) { t=kth(i); all[t]++; if(all[t]==10) { xx=cnt(t); big=max(big,xx); n-=(xx-10); } big=max(big,all[t]); if(all[t]>n/3) { say_answer(t); return; } if(big+(xx-i)<=n/3) { say_answer(-1); return; } } say_answer(-1); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Wrong answer |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |