結果

問題 No.253 ロウソクの長さ
ユーザー koyoprokoyopro
提出日時 2015-10-07 18:47:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 158,080 KB
実行使用メモリ 25,604 KB
平均クエリ数 108.78
最終ジャッジ日時 2024-07-16 06:27:17
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,196 KB
testcase_01 AC 20 ms
25,220 KB
testcase_02 AC 22 ms
24,580 KB
testcase_03 AC 21 ms
24,964 KB
testcase_04 AC 20 ms
25,220 KB
testcase_05 AC 22 ms
25,220 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 21 ms
25,220 KB
testcase_09 AC 21 ms
24,964 KB
testcase_10 WA -
testcase_11 AC 21 ms
24,824 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 20 ms
24,568 KB
testcase_15 AC 21 ms
24,964 KB
testcase_16 WA -
testcase_17 AC 23 ms
24,580 KB
testcase_18 AC 21 ms
24,964 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 21 ms
25,220 KB
testcase_22 AC 20 ms
25,220 KB
testcase_23 WA -
testcase_24 AC 22 ms
24,580 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 22 ms
24,964 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 21 ms
24,964 KB
testcase_34 AC 21 ms
25,220 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define REP(i, n) for(int i=0; i<(n); i++)

int cnt = 0;
int ask(int Y){
    cout << "? " << Y << endl;
    int res;
    cin >> res;
    cnt++;
    return res;
}
signed main()
{
    int high = (int)1e9;
    int low = 10;
    REP(i,100) {
        if (ask(10) == 0) {
            cout << "! " << 10 + cnt - 1 << endl;
            return 0;
        }
        int mid = (high + low) / 2;
        int ret = ask(mid);
        if (ret == 0) {
            cout << "! " << mid + cnt - 1 << endl;
            return 0;
        }
        if (ret == 1) {
            low = mid;
        } else {
            high = mid;
        }
        high = max(0, high-1);
        low = max(0, low-1);
    }
    return 0;
}
0