結果

問題 No.246 質問と回答
ユーザー shimashimau67shimashimau67
提出日時 2015-08-01 14:10:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 76,156 KB
実行使用メモリ 70,992 KB
平均クエリ数 44.30
最終ジャッジ日時 2024-07-16 19:53:00
合計ジャッジ時間 10,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
69,900 KB
testcase_01 AC 203 ms
69,972 KB
testcase_02 AC 202 ms
69,840 KB
testcase_03 AC 199 ms
70,992 KB
testcase_04 AC 205 ms
70,004 KB
testcase_05 AC 208 ms
69,752 KB
testcase_06 AC 206 ms
69,680 KB
testcase_07 AC 208 ms
70,004 KB
testcase_08 AC 219 ms
70,804 KB
testcase_09 AC 214 ms
70,604 KB
testcase_10 AC 206 ms
69,724 KB
testcase_11 AC 210 ms
70,344 KB
testcase_12 AC 203 ms
69,764 KB
testcase_13 AC 215 ms
70,824 KB
testcase_14 AC 206 ms
70,100 KB
testcase_15 AC 220 ms
70,460 KB
testcase_16 AC 205 ms
70,216 KB
testcase_17 AC 207 ms
69,840 KB
testcase_18 AC 205 ms
69,708 KB
testcase_19 AC 215 ms
70,952 KB
testcase_20 AC 202 ms
69,848 KB
testcase_21 AC 203 ms
70,204 KB
testcase_22 AC 206 ms
69,560 KB
testcase_23 AC 209 ms
69,508 KB
testcase_24 AC 194 ms
69,492 KB
testcase_25 AC 214 ms
70,456 KB
testcase_26 AC 195 ms
69,956 KB
testcase_27 AC 207 ms
69,980 KB
testcase_28 AC 201 ms
70,124 KB
testcase_29 AC 201 ms
69,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		int max = 1000000000;
        int b = max / 2;
        int ask = max / 2;

        Scanner sc = new Scanner(System.in);
        IN : for (int i = 0; i < 100; i++)
        {
            System.out.println("? " + ask);
            b /= 2;
            if (sc.nextInt() == 1)
            {
                ask += b;
            }
            else
            {
                ask -= b;
            }

            if (b == 0)
            {
                ask -= 13;
                while (true)
                {
                    System.out.println("? " + ask);
                    if (sc.nextInt() == 1) ask++;
                    else
                    {
                    	System.out.println("! " + (ask - 1));
                        break IN;
                    }
                }
            }
        }
	}
}
0