結果

問題 No.2252 Find Zero
ユーザー ks2mks2m
提出日時 2023-03-24 21:26:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 82,772 KB
実行使用メモリ 57,416 KB
平均クエリ数 78.17
最終ジャッジ日時 2024-09-18 16:43:16
合計ジャッジ時間 6,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
56,844 KB
testcase_01 AC 215 ms
57,316 KB
testcase_02 AC 138 ms
57,048 KB
testcase_03 AC 180 ms
56,836 KB
testcase_04 AC 139 ms
56,912 KB
testcase_05 AC 130 ms
56,460 KB
testcase_06 AC 137 ms
56,256 KB
testcase_07 AC 138 ms
56,312 KB
testcase_08 AC 172 ms
57,416 KB
testcase_09 AC 186 ms
57,204 KB
testcase_10 AC 134 ms
56,588 KB
testcase_11 AC 129 ms
57,080 KB
testcase_12 AC 129 ms
57,040 KB
testcase_13 AC 133 ms
56,580 KB
testcase_14 AC 141 ms
57,228 KB
testcase_15 AC 131 ms
56,912 KB
testcase_16 AC 132 ms
56,636 KB
testcase_17 AC 134 ms
56,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		int n2 = n / 2;
		for (int i = 0; i < n2; i++) {
			int x = i * 2;
			int y = x + 1;
			System.out.println("? " + x + " " + y);
			int z = Integer.parseInt(br.readLine());
			if (z == x) {
				System.out.println("! " + y);
				return;
			}
			if (z == y) {
				System.out.println("! " + x);
				return;
			}
		}
		System.out.println("! " + (n - 1));
		br.close();
	}
}
0