Submission #1178422

#TimeUsernameProblemLanguageResultExecution timeMemory
1178422PAndaScmp (balkan11_cmp)C++20
0 / 100
464 ms66056 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 timeMemoryGrader output
Fetching results...