結果

問題 No.2753 鳩の巣原理
ユーザー ks2mks2m
提出日時 2024-05-10 22:49:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 76,756 KB
実行使用メモリ 71,752 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:49:57
合計ジャッジ時間 9,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
71,248 KB
testcase_01 AC 156 ms
71,192 KB
testcase_02 AC 160 ms
71,252 KB
testcase_03 AC 179 ms
71,512 KB
testcase_04 AC 158 ms
71,432 KB
testcase_05 AC 179 ms
71,272 KB
testcase_06 AC 156 ms
71,476 KB
testcase_07 AC 161 ms
71,436 KB
testcase_08 AC 157 ms
71,664 KB
testcase_09 AC 152 ms
71,752 KB
testcase_10 AC 152 ms
71,500 KB
testcase_11 AC 179 ms
71,420 KB
testcase_12 AC 153 ms
71,092 KB
testcase_13 AC 171 ms
71,424 KB
testcase_14 AC 155 ms
71,236 KB
testcase_15 AC 159 ms
71,200 KB
testcase_16 AC 166 ms
71,156 KB
testcase_17 AC 155 ms
71,016 KB
testcase_18 AC 173 ms
71,448 KB
testcase_19 AC 152 ms
70,832 KB
testcase_20 AC 151 ms
70,948 KB
testcase_21 AC 168 ms
71,656 KB
testcase_22 AC 149 ms
71,228 KB
testcase_23 AC 156 ms
71,732 KB
testcase_24 AC 175 ms
71,016 KB
testcase_25 AC 154 ms
71,332 KB
testcase_26 AC 156 ms
71,376 KB
testcase_27 AC 149 ms
71,228 KB
testcase_28 AC 154 ms
71,484 KB
testcase_29 AC 156 ms
70,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();

		int ok = 1;
		int ng = n;
		for (int i = 0; i < 10; i++) {
			int mid = (ok + ng) / 2;
			System.out.println("? " + mid);
			int in = sc.nextInt();
			if (mid <= in) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		System.out.println("Yes " + ok + " " + ng);
		sc.close();
	}
}
0