結果

問題 No.2252 Find Zero
ユーザー umezo
提出日時 2023-03-24 21:31:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 194,896 KB
最終ジャッジ日時 2025-02-11 17:03:31
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
 
  int n;
  cin>>n;
  vector<int> A(n);
  rep(i,n) A[i]=i;
  
  rep(i,n/2){
    cout<<"? "<<2*i<<" "<<2*i+1<<endl;
    int z;
    cin>>z;
    if(z==2*i){
      cout<<"! "<<2*i+1<<endl;
      return 0;
    }
    else if(z==2*i+1){
      cout<<"! "<<2*i<<endl;
      return 0;
    }
  }
  cout<<"! "<<n-1<<endl;
   
  return 0;
}
0