結果

問題 No.246 質問と回答
ユーザー TokuzooTokuzoo
提出日時 2021-06-18 21:05:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 68,044 KB
実行使用メモリ 24,396 KB
平均クエリ数 30.90
最終ジャッジ日時 2023-09-24 10:40:20
合計ジャッジ時間 3,478 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 38 ms
24,276 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
24,048 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
23,412 KB
testcase_09 WA -
testcase_10 AC 37 ms
23,424 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 35 ms
23,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
23,364 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 36 ms
24,360 KB
testcase_22 AC 36 ms
23,652 KB
testcase_23 AC 38 ms
23,664 KB
testcase_24 AC 38 ms
24,000 KB
testcase_25 WA -
testcase_26 AC 36 ms
23,640 KB
testcase_27 AC 36 ms
23,652 KB
testcase_28 WA -
testcase_29 AC 37 ms
23,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cmath>
using namespace std;

int main(){
    int l,r;
    l = 1; r = pow(10,9);

    char c;

    while(1){
        int mid = ceil((double)(l+r)/2);
        cout << '?' << ' ' << mid << endl;
        fflush(stdout);
        cin >> c;
        if(c == '1') l = mid;
        else r = mid-1;

        if(r - l == 1){
            cout << '?' << ' ' << r << endl;
            fflush(stdout);
            cin >> c;
            if(c == 1) cout << '!' << ' ' << r << endl;
            else cout << '!' << ' ' << l << endl;
            return 0;
        }

        if(r == l){
            cout << '!' << ' ' << r << endl;
            return 0;
        }
    }
}
0