結果

問題 No.246 質問と回答
ユーザー YamaKasaYamaKasa
提出日時 2018-09-06 18:17:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 76,456 KB
実行使用メモリ 72,112 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 20:18:03
合計ジャッジ時間 10,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 209 ms
70,488 KB
testcase_01 AC 202 ms
70,248 KB
testcase_02 AC 214 ms
70,848 KB
testcase_03 AC 216 ms
71,264 KB
testcase_04 AC 206 ms
70,492 KB
testcase_05 AC 214 ms
70,900 KB
testcase_06 AC 211 ms
71,204 KB
testcase_07 AC 201 ms
70,008 KB
testcase_08 AC 213 ms
70,700 KB
testcase_09 AC 216 ms
70,516 KB
testcase_10 AC 215 ms
70,744 KB
testcase_11 AC 199 ms
70,140 KB
testcase_12 AC 201 ms
72,112 KB
testcase_13 AC 208 ms
70,824 KB
testcase_14 AC 196 ms
70,184 KB
testcase_15 AC 210 ms
71,244 KB
testcase_16 AC 203 ms
70,284 KB
testcase_17 AC 203 ms
70,228 KB
testcase_18 AC 203 ms
70,708 KB
testcase_19 AC 193 ms
69,840 KB
testcase_20 AC 214 ms
71,076 KB
testcase_21 AC 195 ms
70,044 KB
testcase_22 AC 213 ms
71,112 KB
testcase_23 AC 201 ms
69,972 KB
testcase_24 AC 221 ms
70,596 KB
testcase_25 AC 214 ms
70,748 KB
testcase_26 AC 218 ms
70,524 KB
testcase_27 AC 215 ms
70,476 KB
testcase_28 AC 222 ms
70,888 KB
testcase_29 AC 216 ms
70,588 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(r - l == 1) {
				System.out.println("! " + mid);
				System.exit(0);
			}

		}
		scan.close();
	}
}
0