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

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