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

#TimeUsernameProblemLanguageResultExecution timeMemory
725686FatihSolakCoins (IOI17_coins)C++17
100 / 100
12 ms1556 KiB
#include "coins.h" #include <bits/stdc++.h> using namespace std; 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; } flips[0] = xr ^ c; 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; }
#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...