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

#TimeUsernameProblemLanguageResultExecution timeMemory
1086203codexistentCoins (IOI17_coins)C++14
100 / 100
7 ms1704 KiB
#include "coins.h" std::vector<int> coin_flips(std::vector<int> b, int c) { std::vector<int> flips(1); int xr = 0; for(int i = 0; i < 64; i++) if(b[i]) xr ^= i; xr %= 64; flips[0] = c ^ xr; return flips; } int find_coin(std::vector<int> b) { int xr = 0; for(int i = 0; i < 64; i++) if(b[i]) xr ^= i; return xr % 64; }
#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...