結果

問題 No.246 質問と回答
ユーザー TokuzooTokuzoo
提出日時 2021-06-18 21:13:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 69,464 KB
実行使用メモリ 25,476 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-17 11:31:52
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 52 ms
25,220 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
24,580 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 52 ms
25,220 KB
testcase_09 WA -
testcase_10 AC 53 ms
24,836 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 53 ms
25,220 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 55 ms
24,836 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 53 ms
24,836 KB
testcase_22 AC 52 ms
24,836 KB
testcase_23 AC 52 ms
25,220 KB
testcase_24 AC 52 ms
24,836 KB
testcase_25 WA -
testcase_26 AC 54 ms
24,964 KB
testcase_27 AC 54 ms
24,964 KB
testcase_28 WA -
testcase_29 AC 53 ms
25,220 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