# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
26785 | 2017-07-05T16:00:40 Z | baactree | 비교 (balkan11_cmp) | C++14 | 4144 ms | 100908 KB |
#include "cmp.h" void remember(int n) { bit_set(10240-n); n++; while(n<5000){ bit_set(n); n+=n&(-n); } } int compare(int b) { if(bit_get(10240-b)) return 0; int ret=0; b++; while(b){ ret+=bit_get(b); b-=b&(-b); } if(ret>0) return 1; return -1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4144 ms | 100908 KB | ZERO POINTS: more than 20 accesses in the worst case |