結果

問題 No.246 質問と回答
ユーザー gamelove765gamelove765
提出日時 2015-07-17 22:39:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 54,476 KB
実行使用メモリ 25,476 KB
平均クエリ数 101.00
最終ジャッジ日時 2024-07-16 19:39:57
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
  int l=0,r=1000000000;
  for(int i=0;i<100;i++){
    int center=(l+r)/2;
    cout << "? " << center << endl;
    int tmp;
    cin >> tmp;
    if(tmp == 1){
      l = center;
    }
    else{
      r=center;
    }
  }
  cout << "! " << l << endl;
}
0