結果

問題 No.246 質問と回答
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-12 16:25:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 3,218 ms
コンパイル使用メモリ 78,780 KB
実行使用メモリ 71,460 KB
平均クエリ数 101.00
最終ジャッジ日時 2024-07-16 19:54:22
合計ジャッジ時間 11,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
71,460 KB
testcase_01 AC 217 ms
70,696 KB
testcase_02 AC 224 ms
70,592 KB
testcase_03 AC 220 ms
70,440 KB
testcase_04 AC 220 ms
70,596 KB
testcase_05 AC 223 ms
70,828 KB
testcase_06 AC 223 ms
70,984 KB
testcase_07 AC 218 ms
71,252 KB
testcase_08 AC 216 ms
70,996 KB
testcase_09 AC 221 ms
70,556 KB
testcase_10 AC 214 ms
70,860 KB
testcase_11 AC 213 ms
70,736 KB
testcase_12 AC 227 ms
70,800 KB
testcase_13 AC 221 ms
70,792 KB
testcase_14 AC 222 ms
70,984 KB
testcase_15 AC 218 ms
70,748 KB
testcase_16 AC 217 ms
70,900 KB
testcase_17 AC 219 ms
70,808 KB
testcase_18 AC 223 ms
71,016 KB
testcase_19 AC 225 ms
70,836 KB
testcase_20 AC 222 ms
70,980 KB
testcase_21 AC 217 ms
70,652 KB
testcase_22 AC 214 ms
71,048 KB
testcase_23 AC 219 ms
70,860 KB
testcase_24 AC 213 ms
71,064 KB
testcase_25 AC 223 ms
70,564 KB
testcase_26 AC 216 ms
70,816 KB
testcase_27 AC 223 ms
70,860 KB
testcase_28 AC 218 ms
71,124 KB
testcase_29 AC 242 ms
70,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0246 {
	
	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int l = 1, r = 1_000_000_000;
		for (int i=0; i<100; i++) {
			int m = (l + r)/2;
			out.println("? "+m);
			out.flush();
			int x = in.nextInt();
			if (x == 1) {
				l = m;
			} else {
				r = m;
			}
		}

		out.println("! "+l);
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0