結果

問題 No.246 質問と回答
ユーザー kano_townkano_town
提出日時 2015-07-17 23:14:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 3,662 ms
コンパイル使用メモリ 76,032 KB
実行使用メモリ 71,360 KB
平均クエリ数 30.87
最終ジャッジ日時 2024-07-16 19:44:50
合計ジャッジ時間 11,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
69,852 KB
testcase_01 AC 199 ms
69,984 KB
testcase_02 AC 192 ms
69,788 KB
testcase_03 AC 202 ms
70,184 KB
testcase_04 AC 194 ms
69,520 KB
testcase_05 AC 198 ms
69,696 KB
testcase_06 AC 198 ms
69,808 KB
testcase_07 AC 200 ms
69,784 KB
testcase_08 AC 211 ms
70,300 KB
testcase_09 AC 202 ms
69,504 KB
testcase_10 AC 213 ms
70,688 KB
testcase_11 AC 212 ms
70,660 KB
testcase_12 AC 212 ms
70,408 KB
testcase_13 AC 204 ms
70,468 KB
testcase_14 AC 198 ms
70,040 KB
testcase_15 AC 212 ms
70,768 KB
testcase_16 AC 202 ms
70,780 KB
testcase_17 AC 214 ms
70,608 KB
testcase_18 AC 199 ms
70,280 KB
testcase_19 AC 199 ms
70,252 KB
testcase_20 AC 194 ms
70,368 KB
testcase_21 AC 198 ms
70,060 KB
testcase_22 AC 211 ms
70,580 KB
testcase_23 AC 213 ms
70,528 KB
testcase_24 AC 200 ms
69,944 KB
testcase_25 AC 201 ms
69,748 KB
testcase_26 AC 203 ms
69,932 KB
testcase_27 AC 201 ms
71,360 KB
testcase_28 AC 192 ms
69,804 KB
testcase_29 AC 197 ms
69,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder246 {

    public static void main(String[] args) {
        int min = 0, max = 1000000000, mid;
        Scanner sc = new Scanner(System.in);
        while (Math.abs(max-min) > 1) {
            mid = (max + min) / 2;
            System.out.println("? " + mid);
            if (sc.nextInt() == 1) min = mid;
            else max = mid;
        }
        System.out.println("! " + min);
    }
}
0