# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
41522 | 2018-02-18T10:12:28 Z | pica4500 | 비교 (balkan11_cmp) | C++ | 965 ms | 82448 KB |
#include "cmp.h" #include <algorithm> using namespace std; void remember(int n) { bit_set(n + 1); } int compare(int b) { b++; if (bit_get(b)) return 0; for (int i = 1; i < min(1000, b); i++) if (bit_get(i)) return 1; return -1; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 965 ms | 82448 KB | ZERO POINTS: For a=3040 and b=3318, correct answer is 1, got -1 |