結果

問題 No.246 質問と回答
ユーザー ぴろずぴろず
提出日時 2015-07-17 22:24:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 72,176 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 19:37:38
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
70,088 KB
testcase_01 AC 178 ms
69,628 KB
testcase_02 AC 179 ms
69,816 KB
testcase_03 AC 182 ms
70,328 KB
testcase_04 AC 184 ms
70,780 KB
testcase_05 AC 190 ms
71,068 KB
testcase_06 AC 177 ms
70,228 KB
testcase_07 AC 183 ms
69,824 KB
testcase_08 AC 188 ms
71,076 KB
testcase_09 AC 190 ms
70,964 KB
testcase_10 AC 176 ms
69,888 KB
testcase_11 AC 182 ms
70,312 KB
testcase_12 AC 181 ms
70,376 KB
testcase_13 AC 186 ms
69,928 KB
testcase_14 AC 180 ms
72,176 KB
testcase_15 AC 177 ms
69,956 KB
testcase_16 AC 182 ms
70,052 KB
testcase_17 AC 180 ms
70,256 KB
testcase_18 AC 183 ms
70,104 KB
testcase_19 AC 191 ms
69,956 KB
testcase_20 AC 180 ms
70,272 KB
testcase_21 AC 197 ms
70,576 KB
testcase_22 AC 195 ms
70,452 KB
testcase_23 AC 181 ms
69,832 KB
testcase_24 AC 181 ms
69,828 KB
testcase_25 AC 185 ms
69,456 KB
testcase_26 AC 182 ms
69,860 KB
testcase_27 AC 182 ms
69,988 KB
testcase_28 AC 196 ms
69,916 KB
testcase_29 AC 179 ms
70,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no246;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int left = 1;
		int right = (int) 1E9 + 1;
		while(left + 1 < right) {
			int c = (left + right) / 2;
			System.out.println("? " + c);
			if (sc.nextInt() == 1) {
				left = c;
			}else{
				right = c;
			}
		}
		System.out.println("! " + left);
	}

}
0