結果

問題 No.253 ロウソクの長さ
ユーザー KilisameKilisame
提出日時 2016-09-30 16:03:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 75,892 KB
実行使用メモリ 71,496 KB
平均クエリ数 21.22
最終ジャッジ日時 2024-07-17 00:27:44
合計ジャッジ時間 10,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
70,800 KB
testcase_01 AC 160 ms
71,496 KB
testcase_02 AC 151 ms
70,132 KB
testcase_03 AC 148 ms
70,344 KB
testcase_04 AC 149 ms
69,516 KB
testcase_05 AC 153 ms
70,180 KB
testcase_06 AC 172 ms
70,572 KB
testcase_07 AC 158 ms
69,956 KB
testcase_08 AC 161 ms
70,340 KB
testcase_09 AC 173 ms
71,324 KB
testcase_10 AC 164 ms
70,236 KB
testcase_11 AC 159 ms
70,412 KB
testcase_12 AC 169 ms
70,676 KB
testcase_13 AC 158 ms
69,828 KB
testcase_14 AC 152 ms
70,556 KB
testcase_15 AC 154 ms
70,560 KB
testcase_16 AC 156 ms
69,836 KB
testcase_17 AC 164 ms
70,980 KB
testcase_18 AC 172 ms
70,860 KB
testcase_19 AC 152 ms
69,904 KB
testcase_20 AC 152 ms
69,940 KB
testcase_21 AC 154 ms
69,984 KB
testcase_22 AC 165 ms
69,324 KB
testcase_23 AC 168 ms
70,524 KB
testcase_24 AC 165 ms
71,076 KB
testcase_25 AC 169 ms
70,704 KB
testcase_26 AC 157 ms
70,400 KB
testcase_27 AC 153 ms
69,548 KB
testcase_28 AC 155 ms
70,112 KB
testcase_29 AC 158 ms
70,264 KB
testcase_30 AC 160 ms
70,364 KB
testcase_31 AC 157 ms
70,048 KB
testcase_32 AC 158 ms
70,424 KB
testcase_33 AC 170 ms
70,544 KB
testcase_34 AC 161 ms
70,888 KB
testcase_35 AC 158 ms
69,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package puzzle.yukicoder.lengthofcandle;

import java.util.Scanner;

public class Lengthofcandle {

    public static void main(String[] args) {
        int min = 10;
        int max = 1000000001;
        int current = 100;
        Scanner cin = new Scanner(System.in);
        for (int i = 0; i < 100; i++) {
            /* 単純に2分探索したい。しかし、長さが100以下の場合、途中で燃え尽きてしまうため、探索の開始は100とする */
            System.out.println("? " + (current - i));
            System.out.flush();
            String result = cin.nextLine();
            if (result.equals("0")) {
                System.out.println("! " + current);
                System.out.flush();
                System.exit(0);
            } else if (result.equals("1")) {
                min = current;
            } else {
                max = current;
            }
            current = (min + max) / 2;
        }
    }

}
0