結果

問題 No.246 質問と回答
ユーザー uwiuwi
提出日時 2015-07-19 16:06:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 3,861 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 71,268 KB
平均クエリ数 30.90
最終ジャッジ日時 2024-07-16 19:49:03
合計ジャッジ時間 12,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
69,996 KB
testcase_01 AC 200 ms
71,268 KB
testcase_02 AC 191 ms
70,088 KB
testcase_03 AC 205 ms
70,692 KB
testcase_04 AC 207 ms
70,848 KB
testcase_05 AC 194 ms
69,756 KB
testcase_06 AC 198 ms
69,424 KB
testcase_07 AC 207 ms
70,560 KB
testcase_08 AC 198 ms
70,316 KB
testcase_09 AC 196 ms
69,804 KB
testcase_10 AC 197 ms
69,840 KB
testcase_11 AC 200 ms
69,868 KB
testcase_12 AC 209 ms
70,584 KB
testcase_13 AC 200 ms
70,064 KB
testcase_14 AC 208 ms
70,728 KB
testcase_15 AC 192 ms
69,656 KB
testcase_16 AC 193 ms
70,220 KB
testcase_17 AC 195 ms
70,864 KB
testcase_18 AC 195 ms
69,944 KB
testcase_19 AC 209 ms
70,836 KB
testcase_20 AC 210 ms
70,972 KB
testcase_21 AC 206 ms
70,664 KB
testcase_22 AC 209 ms
70,552 KB
testcase_23 AC 202 ms
70,328 KB
testcase_24 AC 196 ms
70,524 KB
testcase_25 AC 217 ms
70,540 KB
testcase_26 AC 201 ms
70,148 KB
testcase_27 AC 211 ms
70,656 KB
testcase_28 AC 204 ms
69,952 KB
testcase_29 AC 202 ms
70,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package q5xx;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Q551 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		int low = 1, high = 1000000000+1;
		while(high - low > 1){
			int h = high+low>>>1;
			if(go(h)){
				low = h;
			}else{
				high = h;
			}
		}
		out.println("! " + low);
	}
	
	static boolean go(int h)
	{
		out.println("? " + h);
		out.flush();
		
		return ni() == 1;
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0