結果

問題 No.246 質問と回答
ユーザー ミドリムシミドリムシ
提出日時 2018-02-11 07:25:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 69,304 KB
実行使用メモリ 25,604 KB
平均クエリ数 30.53
最終ジャッジ日時 2024-07-16 15:25:06
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
24,580 KB
testcase_01 WA -
testcase_02 AC 46 ms
24,580 KB
testcase_03 AC 45 ms
25,220 KB
testcase_04 AC 45 ms
24,580 KB
testcase_05 WA -
testcase_06 AC 48 ms
25,220 KB
testcase_07 AC 47 ms
24,964 KB
testcase_08 AC 48 ms
25,604 KB
testcase_09 WA -
testcase_10 AC 50 ms
25,220 KB
testcase_11 WA -
testcase_12 AC 48 ms
24,964 KB
testcase_13 AC 46 ms
25,220 KB
testcase_14 AC 48 ms
24,580 KB
testcase_15 WA -
testcase_16 AC 47 ms
24,836 KB
testcase_17 AC 48 ms
24,580 KB
testcase_18 AC 50 ms
25,208 KB
testcase_19 AC 46 ms
25,220 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 47 ms
25,220 KB
testcase_24 WA -
testcase_25 AC 46 ms
24,580 KB
testcase_26 AC 48 ms
25,348 KB
testcase_27 AC 49 ms
24,580 KB
testcase_28 AC 48 ms
24,580 KB
testcase_29 AC 45 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int main(){
    int left = 0, right = 1e9;
    while(left + 1 < right){
        int middle = (left + right) / 2;
        cout << "? " << middle << endl;
        int reply;
        cin >> reply;
        if(reply){
            left = middle;
        }else{
            right = middle - 1;
        }
    }
    cout << "! " << left << endl;
}
0