Submission #669714

#TimeUsernameProblemLanguageResultExecution timeMemory
669714mychecksedadColors (BOI20_colors)C++17
0 / 100
1 ms208 KiB
/* Author : Mychecksdead */ #include<bits/stdc++.h> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; typedef long long int ll; typedef long double ld; #define MOD1 (1000000000+7) #define MOD (998244353) #define PI 3.1415926535 #define pb push_back #define setp() cout << setprecision(15) #define all(x) x.begin(), x.end() #define debug(x) cerr << #x << " is " << x << '\n'; const int N = 1e6+100, M = 1e5+10, F = 2147483646, K = 20; bool ask(int c){ cout << "? " << c << endl; bool r; cin >> r; return r; } int n; void solve(){ cin >> n; vector<int> v; int l = 1, r = n; while(l <= r){ v.pb(l); v.pb(r); l++, r--; } int last = v[0]; ask(v[0]); for(int i = 1; i < v.size(); ++i){ bool b = ask(v[i]); if(b == 0){ cout << "= " << abs(v[i] - v[i - 1]) + 1 << endl; return; } } } int main(){ cin.tie(0); ios::sync_with_stdio(0); int T = 1, aa; // cin >> T;aa=T; while(T--){ // cout << "Case #" << aa-T << ": "; solve(); cout << '\n'; } return 0; }

Compilation message (stderr)

Colors.cpp: In function 'void solve()':
Colors.cpp:36:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   36 |  for(int i = 1; i < v.size(); ++i){
      |                 ~~^~~~~~~~~~
Colors.cpp:34:6: warning: unused variable 'last' [-Wunused-variable]
   34 |  int last = v[0];
      |      ^~~~
Colors.cpp: In function 'int main()':
Colors.cpp:50:16: warning: unused variable 'aa' [-Wunused-variable]
   50 |     int T = 1, aa;
      |                ^~
#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...