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

#TimeUsernameProblemLanguageResultExecution timeMemory
1100404akzytrCoins (IOI17_coins)C++17
100 / 100
9 ms1848 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define pb push_back #define fi first #define se second #define endl '\n' vector<int> coin_flips(vector<int> b, int c) { ll k = 0; for(int i = 0; i < 64; i++){ if(b[i]){ k ^= i; } } vector<int> turn; turn.pb(k ^ c); return turn; } int find_coin(vector<int> b) { int ans = 0; for(int i = 0; i < 64; i++) { if(b[i]){ ans ^= i; } } return ans; }
#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...