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

#TimeUsernameProblemLanguageResultExecution timeMemory
1105797iyedooMemory (IOI10_memory)C++17
0 / 100
7 ms336 KiB
#include <bits/stdc++.h> #include <grader.h> using namespace std; void play() { int candy = 0; for (int i = 1; i <= 50; ++i) { int res1 = faceup(i); for (int j = i + 1; j <= 50; ++j) { int res2 = faceup(j); if (res1 == res2) candy++; if (candy == 25) return; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...