結果

問題 No.253 ロウソクの長さ
ユーザー KilisameKilisame
提出日時 2016-09-30 16:02:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 962 bytes
コンパイル時間 3,333 ms
コンパイル使用メモリ 75,960 KB
実行使用メモリ 71,180 KB
平均クエリ数 23.11
最終ジャッジ日時 2024-07-16 11:07:44
合計ジャッジ時間 11,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
69,988 KB
testcase_01 AC 155 ms
70,436 KB
testcase_02 AC 152 ms
70,212 KB
testcase_03 AC 153 ms
70,116 KB
testcase_04 AC 146 ms
70,684 KB
testcase_05 AC 153 ms
70,388 KB
testcase_06 AC 159 ms
70,136 KB
testcase_07 AC 159 ms
70,016 KB
testcase_08 AC 175 ms
71,180 KB
testcase_09 AC 151 ms
70,280 KB
testcase_10 AC 159 ms
70,696 KB
testcase_11 AC 161 ms
70,340 KB
testcase_12 AC 161 ms
70,044 KB
testcase_13 AC 164 ms
69,852 KB
testcase_14 AC 171 ms
71,012 KB
testcase_15 AC 168 ms
70,880 KB
testcase_16 AC 169 ms
69,696 KB
testcase_17 AC 152 ms
69,592 KB
testcase_18 AC 158 ms
69,852 KB
testcase_19 AC 153 ms
70,104 KB
testcase_20 AC 164 ms
70,300 KB
testcase_21 AC 150 ms
70,244 KB
testcase_22 AC 163 ms
71,104 KB
testcase_23 AC 176 ms
70,044 KB
testcase_24 AC 154 ms
70,052 KB
testcase_25 AC 158 ms
69,520 KB
testcase_26 AC 161 ms
70,980 KB
testcase_27 AC 173 ms
70,588 KB
testcase_28 AC 155 ms
69,928 KB
testcase_29 AC 158 ms
70,000 KB
testcase_30 AC 155 ms
69,788 KB
testcase_31 AC 155 ms
70,172 KB
testcase_32 AC 156 ms
70,384 KB
testcase_33 WA -
testcase_34 AC 164 ms
70,888 KB
testcase_35 AC 168 ms
70,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package puzzle.yukicoder.lengthofcandle;

import java.util.Scanner;

public class Lengthofcandle {

    public static void main(String[] args) {
        int min = 10;
        int max = 1000000000;
        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