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

#TimeUsernameProblemLanguageResultExecution timeMemory
1100391akzytrCoins (IOI17_coins)C++17
0 / 100
7 ms1340 KiB
#include "coins.h" std::vector<int> coin_flips(std::vector<int> b, int c) { if(c==0){ if(b[0] == b[1]){ b[63] = 1-b[63]; } else{ b[0] = 1-b[0]; } } else{ if(b[0] == b[1]){ b[0] = 1-b[0]; } else{ b[63] = 1-b[63]; } } return b; } int find_coin(std::vector<int> b) { return b[0] != b[1]; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...