(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 #1104174

#TimeUsernameProblemLanguageResultExecution timeMemory
1104174Tarela4kaMemory (IOI10_memory)C++17
0 / 100
1 ms336 KiB
#include <iostream> #include <vector> #include <cmath> #include <algorithm> #include <string> #include <map> #include <set> using namespace std; int faceup(int i); void play(){ vector<char> let(51, '*'); bool f = 0; for(int i = 1; i <= 50; i++){ let[i] = faceup(i); f=!f; if (f){ for(int j = 1; j <= 50; j++){ if (let[i] == let[j] && i != j) { faceup(j); f = !f; } } } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...