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

#TimeUsernameProblemLanguageResultExecution timeMemory
128755Mahmoud_AdelCoins (IOI17_coins)C++14
100 / 100
13 ms1516 KiB
#include "coins.h" #include <bits/stdc++.h> using namespace std; vector<int> coin_flips(vector<int> b, int c) { vector<int> flips; int tot = 0; for(int i=0; i<64; i++) { if(!b[i]) continue; tot ^= i; } flips.push_back(tot^c); return flips; } int find_coin(vector<int> b) { int tot = 0; for(int i=0; i<64; i++) { if(!b[i]) continue; tot ^= i; } return tot; }
#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...