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

#TimeUsernameProblemLanguageResultExecution timeMemory
1100395akzytrCoins (IOI17_coins)C++17
10 / 100
8 ms1848 KiB
#include <bits/stdc++.h> using namespace std; template<typename T,int sz>using ar=array<T, sz>; 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) { vector<int> turn; if(c==0){ if(b[0] == b[1]){ turn.pb(63); } else{ turn.pb(0); } } else{ if(b[0] == b[1]){ turn.pb(0); } else{ turn.pb(63); } } return turn; } int find_coin(vector<int> b) { return b[0] != b[1]; }
#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...