結果

問題 No.246 質問と回答
ユーザー ぴろずぴろず
提出日時 2015-07-17 22:24:38
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

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