# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
315049 | 2020-10-22T01:35:46 Z | Seanliu | CONSUL (info1cup19_consul) | C++14 | 1 ms | 352 KB |
#include "grader.h" int seed = 101; inline int rnd(){ return seed = (seed * 3 + 1) % 0xdefaced; } void solve(int N){ for(int i = 0; i < 30; i++){ int r = rnd() % N + 1; int v = kth(r); int c = cnt(v); if(c > N / 3){ say_answer(c); return; } } say_answer(-1); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 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 | 1 ms | 352 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |