結果

問題 No.246 質問と回答
ユーザー suiginginsuigingin
提出日時 2015-07-19 21:41:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 3,436 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 70,900 KB
平均クエリ数 31.00
最終ジャッジ日時 2024-07-16 19:49:33
合計ジャッジ時間 11,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
70,096 KB
testcase_01 AC 194 ms
69,984 KB
testcase_02 AC 203 ms
70,208 KB
testcase_03 AC 188 ms
69,444 KB
testcase_04 AC 206 ms
70,248 KB
testcase_05 AC 196 ms
70,044 KB
testcase_06 AC 198 ms
69,920 KB
testcase_07 AC 200 ms
69,916 KB
testcase_08 AC 191 ms
69,824 KB
testcase_09 AC 192 ms
69,716 KB
testcase_10 AC 201 ms
70,084 KB
testcase_11 AC 206 ms
70,664 KB
testcase_12 AC 205 ms
70,868 KB
testcase_13 AC 202 ms
69,732 KB
testcase_14 AC 195 ms
69,832 KB
testcase_15 AC 194 ms
69,740 KB
testcase_16 AC 198 ms
69,704 KB
testcase_17 AC 208 ms
70,836 KB
testcase_18 AC 195 ms
69,904 KB
testcase_19 AC 208 ms
70,768 KB
testcase_20 AC 206 ms
70,728 KB
testcase_21 AC 204 ms
70,812 KB
testcase_22 AC 193 ms
69,724 KB
testcase_23 AC 193 ms
69,676 KB
testcase_24 AC 191 ms
70,876 KB
testcase_25 AC 194 ms
70,180 KB
testcase_26 AC 193 ms
69,776 KB
testcase_27 AC 203 ms
70,572 KB
testcase_28 AC 188 ms
70,076 KB
testcase_29 AC 207 ms
70,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_246 {
	Scanner sc = new Scanner(System.in);
	int M = 1000000000;

	void run() {
		int l = 0;
		int r = M + 1;
		for (int i = 0; i < 30; i++) {
			int mid = (l + r) / 2;
			System.out.println("? " + mid);
			int ans = sc.nextInt();
			if (ans == 1) l = mid;
			else r = mid;
			
		}
		System.out.println("! " + l);
	}

	public static void main(String[] args) {
		new No_246().run();
	}
}
0