제출 #43873

#제출 시각아이디문제언어결과실행 시간메모리
43873kdk8361비교 (balkan11_cmp)C++17
0 / 100
4081 ms82480 KiB
#include "cmp.h"

void remember(int n) {
	//edit this
	for (int i = 1; i <= 12; ++i) 
		if (n&(1 << (12 - i)))
			bit_set(i);
}

int compare(int b) {
	//edit this
	int a = 0;
	for (int i = 1; i <= 12; ++i) {
		if (bit_get(i))
			a += (1 << (12 - i));
	}
	if (b < a) return -1;
	else if (b == a) return 0;
	else return 1;
}

#Verdict Execution timeMemoryGrader output
Fetching results...