結果

問題 No.246 質問と回答
ユーザー YamaKasaYamaKasa
提出日時 2018-09-06 18:14:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 76,268 KB
実行使用メモリ 71,236 KB
平均クエリ数 32.23
最終ジャッジ日時 2024-07-16 20:17:41
合計ジャッジ時間 9,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
69,900 KB
testcase_01 AC 186 ms
70,504 KB
testcase_02 AC 191 ms
69,928 KB
testcase_03 AC 199 ms
70,036 KB
testcase_04 AC 204 ms
71,000 KB
testcase_05 AC 185 ms
70,220 KB
testcase_06 AC 203 ms
71,236 KB
testcase_07 AC 191 ms
69,948 KB
testcase_08 AC 190 ms
69,972 KB
testcase_09 AC 189 ms
70,412 KB
testcase_10 AC 192 ms
69,832 KB
testcase_11 AC 193 ms
70,128 KB
testcase_12 AC 184 ms
70,056 KB
testcase_13 AC 192 ms
70,056 KB
testcase_14 AC 204 ms
70,216 KB
testcase_15 AC 192 ms
70,312 KB
testcase_16 AC 199 ms
70,436 KB
testcase_17 AC 188 ms
70,360 KB
testcase_18 AC 194 ms
69,916 KB
testcase_19 AC 202 ms
70,372 KB
testcase_20 AC 185 ms
70,092 KB
testcase_21 AC 202 ms
70,832 KB
testcase_22 AC 200 ms
71,236 KB
testcase_23 AC 202 ms
70,916 KB
testcase_24 AC 190 ms
70,164 KB
testcase_25 AC 195 ms
69,700 KB
testcase_26 AC 202 ms
70,960 KB
testcase_27 AC 193 ms
70,392 KB
testcase_28 AC 203 ms
70,740 KB
testcase_29 AC 186 ms
70,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int l = 1;
		int r = 1000000000;
		int mid = (l + r) / 2;
		int cnt = 0;
		int n = mid;
		for(int i = 0; i < 100; i++) {
			System.out.println("? " + mid);
			int t = scan.nextInt();
			if(t == 1) {
				l = mid;
				mid = (l + r) / 2;
			}else {
				r = mid;
				mid = (l + r) / 2;
			}
			if(n == mid) {
				cnt++;
			}else {
				cnt = 0;
				n = mid;
			}
			if(cnt == 2) {
				System.out.println("! " + mid);
				System.exit(0);
			}

		}
		scan.close();
	}
}
0