結果

問題 No.246 質問と回答
ユーザー mastersatoshimastersatoshi
提出日時 2015-07-18 03:37:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 71,280 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 19:48:10
合計ジャッジ時間 10,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
69,912 KB
testcase_01 AC 204 ms
69,668 KB
testcase_02 AC 214 ms
70,892 KB
testcase_03 AC 199 ms
69,892 KB
testcase_04 AC 212 ms
70,676 KB
testcase_05 AC 208 ms
71,280 KB
testcase_06 AC 211 ms
70,232 KB
testcase_07 AC 205 ms
71,048 KB
testcase_08 AC 199 ms
69,620 KB
testcase_09 AC 213 ms
71,172 KB
testcase_10 AC 199 ms
70,056 KB
testcase_11 AC 210 ms
70,484 KB
testcase_12 AC 209 ms
70,172 KB
testcase_13 AC 203 ms
69,824 KB
testcase_14 AC 212 ms
70,576 KB
testcase_15 AC 202 ms
69,436 KB
testcase_16 AC 200 ms
69,552 KB
testcase_17 AC 204 ms
70,184 KB
testcase_18 AC 198 ms
70,204 KB
testcase_19 AC 207 ms
71,160 KB
testcase_20 AC 211 ms
70,800 KB
testcase_21 AC 207 ms
70,188 KB
testcase_22 AC 210 ms
70,252 KB
testcase_23 AC 197 ms
69,936 KB
testcase_24 AC 204 ms
70,300 KB
testcase_25 AC 218 ms
71,052 KB
testcase_26 AC 215 ms
70,840 KB
testcase_27 AC 200 ms
70,240 KB
testcase_28 AC 211 ms
70,960 KB
testcase_29 AC 213 ms
70,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main;

import java.util.*;

public class Main {

    public static void main(String[] args) {
        // TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        int min = 1;
        int max = (int) 1e9;

        while (min + 1 != max) {

            int tmp = (min + max) / 2;
            System.out.println("? " + tmp);

            int t = sc.nextInt();

            if (t == 1) {
                min = tmp;
            } else {
                max = tmp;
            }
        }

        System.out.println("! " + min);
    }
}
0