제출 #1142187

#제출 시각아이디문제언어결과실행 시간메모리
1142187SulAcmp (balkan11_cmp)C++20
0 / 100
567 ms66072 KiB
#include "cmp.h"
#include <iostream>
#include <string>
using namespace std;

int __;

void remember(int a) {
    __ = a;
    return;
}

int compare(int b) {
    return __ < b ? 1 : __ == b ? 0 : -1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...