Submission #43894

#TimeUsernameProblemLanguageResultExecution timeMemory
43894dhkim0225cmp (balkan11_cmp)C++14
0 / 100
2 ms248 KiB
#include "cmp.h"
#include <iostream>

using namespace std;
void remember(int n) {
	bit_set(n);
}

int compare(int b) {
	for (int i = 1; i < 20240; i++) {
		cout << bit_get(i) << endl;
		if (bit_get(i) == 1) {
			if (b < i) 
				return -1;
			else if (b == i) 
				return 0;
			else 
				return 1;
		}
	}
}

Compilation message (stderr)

cmp.cpp: In function 'int compare(int)':
cmp.cpp:21:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
#Verdict Execution timeMemoryGrader output
Fetching results...