結果

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

テストケース

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

ソースコード

diff #

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

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

    char c;

    while(1){
        ll 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