結果

問題 No.246 質問と回答
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 13:56:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 2,607 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 71,272 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 19:53:18
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
70,588 KB
testcase_01 AC 211 ms
70,848 KB
testcase_02 AC 207 ms
71,272 KB
testcase_03 AC 195 ms
70,048 KB
testcase_04 AC 195 ms
69,936 KB
testcase_05 AC 199 ms
70,128 KB
testcase_06 AC 198 ms
70,012 KB
testcase_07 AC 201 ms
69,940 KB
testcase_08 AC 211 ms
70,724 KB
testcase_09 AC 198 ms
69,748 KB
testcase_10 AC 198 ms
69,564 KB
testcase_11 AC 196 ms
69,912 KB
testcase_12 AC 205 ms
70,968 KB
testcase_13 AC 211 ms
70,752 KB
testcase_14 AC 193 ms
70,000 KB
testcase_15 AC 202 ms
70,900 KB
testcase_16 AC 189 ms
69,568 KB
testcase_17 AC 203 ms
70,444 KB
testcase_18 AC 203 ms
70,756 KB
testcase_19 AC 192 ms
69,836 KB
testcase_20 AC 194 ms
69,712 KB
testcase_21 AC 206 ms
70,636 KB
testcase_22 AC 199 ms
69,832 KB
testcase_23 AC 210 ms
70,804 KB
testcase_24 AC 194 ms
69,796 KB
testcase_25 AC 196 ms
70,648 KB
testcase_26 AC 211 ms
70,748 KB
testcase_27 AC 194 ms
69,504 KB
testcase_28 AC 194 ms
69,904 KB
testcase_29 AC 193 ms
69,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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