Submission #1096736

#TimeUsernameProblemLanguageResultExecution timeMemory
1096736KasymKXoractive (IZhO19_xoractive)C++17
6 / 100
1 ms344 KiB
#include "bits/stdc++.h" #include "interactive.h" using namespace std; #define ff first #define ss second #define all(v) v.begin(), v.end() #define ll long long #define pb push_back #define pii pair<int, int> #define pli pair<ll, int> #define pll pair<ll, ll> #define tr(i, c) for(auto i = c.begin(); i != c.end(); ++i) #define wr puts("----------------") template<class T>bool umin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template<class T>bool umax(T& a,T b){if(a<b){a=b;return 1;}return 0;} vector<int> guess(int n){ vector<int> A; for(int i = 1; i <= n; ++i){ int x = ask(i); A.pb(x); } return A; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...