結果

問題 No.246 質問と回答
ユーザー yuki2006yuki2006
提出日時 2015-07-13 11:23:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 58,680 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 19:37:07
合計ジャッジ時間 10,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
58,236 KB
testcase_01 AC 181 ms
58,212 KB
testcase_02 AC 182 ms
57,112 KB
testcase_03 AC 182 ms
57,008 KB
testcase_04 AC 180 ms
57,192 KB
testcase_05 AC 180 ms
57,648 KB
testcase_06 AC 183 ms
58,044 KB
testcase_07 AC 181 ms
58,372 KB
testcase_08 AC 182 ms
57,524 KB
testcase_09 AC 181 ms
58,428 KB
testcase_10 AC 181 ms
58,344 KB
testcase_11 AC 178 ms
58,416 KB
testcase_12 AC 188 ms
58,052 KB
testcase_13 AC 180 ms
58,224 KB
testcase_14 AC 192 ms
57,936 KB
testcase_15 AC 183 ms
57,380 KB
testcase_16 AC 194 ms
57,508 KB
testcase_17 AC 180 ms
58,196 KB
testcase_18 AC 195 ms
58,280 KB
testcase_19 AC 185 ms
57,764 KB
testcase_20 AC 184 ms
57,276 KB
testcase_21 AC 184 ms
57,648 KB
testcase_22 AC 181 ms
58,444 KB
testcase_23 AC 176 ms
58,372 KB
testcase_24 AC 192 ms
57,560 KB
testcase_25 AC 195 ms
58,680 KB
testcase_26 AC 201 ms
58,120 KB
testcase_27 AC 184 ms
58,440 KB
testcase_28 AC 179 ms
58,036 KB
testcase_29 AC 190 ms
57,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yuki_Reactive {

    public Yuki_Reactive() {
        Scanner scanner = new Scanner(System.in);
        int A = 0;
        int B = (int) (1e+9) + 1;
        while (B - A > 1) {
            int c = (B + A) / 2;
            System.out.println("? " + c);
//            System.out.flush();
            final int response = scanner.nextInt();
            if (response == 1) {
                A = c;
            } else {
                B = c;
            }
        }
        System.out.println("! " + A );
        System.out.flush();

    }

    public static void main(String[] args) {
        Yuki_Reactive hoge = new Yuki_Reactive();
    }
}
0