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

#TimeUsernameProblemLanguageResultExecution timeMemory
320949SnowFlake7Coins (IOI17_coins)C++14
100 / 100
12 ms1924 KiB
#include <bits/stdc++.h> #include "coins.h" using namespace std; vector<int> coin_flips(vector<int> b, int c) { vector<int> flips; long long x = find_coin(b); flips.push_back(x ^ c); return flips; } int find_coin(vector<int> b) { long long x = 0; for (int i = 0;i < 64;i++) { if (b[i] == 1) x ^= i; } return x; }
#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...