# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1178422 | PAndaS | cmp (balkan11_cmp) | C++20 | 464 ms | 66056 KiB |
#include "cmp.h"
int cache;
void remember(int a){
cache = a;
}
int compare(int b){
if(b < cache) return -1;
else if(b > cache) return 1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |