답안 #41521

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
41521 2018-02-18T10:10:04 Z pica4500 비교 (balkan11_cmp) C++
0 / 100
10000 ms 82424 KB
#include "cmp.h"

void remember(int n) {
	bit_set(n + 1);
}

int compare(int b) {
	b++;
	if (bit_get(b)) return 0;
	for (int i = 1; i < b; i++) if (bit_get(i)) return 1;
	return -1;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 10083 ms 82424 KB Time limit exceeded