(UPD: 2024-12-04 14:48 UTC) Judge is not working due to Cloudflare incident. (URL) We can do nothing about it, sorry. After the incident is resolved, we will grade all submissions.

Submission #392641

#TimeUsernameProblemLanguageResultExecution timeMemory
392641wind_reaperMemory (IOI10_memory)C++17
100 / 100
3 ms252 KiB
#include <bits/stdc++.h> #include "memory.h" #include "grader.h" using namespace std; const int N = 50; void play(){ int a[N+1]; for(int i = 1; i <= N; i++) a[i] = faceup(i); for(int i = 1; i <= N; i++) for(int j = i+1; j <= N; j++) if(a[i] == a[j]){ faceup(i); faceup(j); } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...