結果

問題 No.2753 鳩の巣原理
ユーザー pitPpitP
提出日時 2024-05-10 22:50:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 70,616 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-12-20 06:52:08
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,852 KB
testcase_01 AC 61 ms
68,216 KB
testcase_02 AC 61 ms
68,916 KB
testcase_03 AC 60 ms
68,984 KB
testcase_04 AC 61 ms
68,864 KB
testcase_05 AC 60 ms
69,168 KB
testcase_06 AC 61 ms
69,512 KB
testcase_07 AC 61 ms
69,728 KB
testcase_08 AC 62 ms
69,028 KB
testcase_09 AC 62 ms
68,752 KB
testcase_10 AC 59 ms
70,036 KB
testcase_11 AC 59 ms
69,288 KB
testcase_12 AC 61 ms
69,044 KB
testcase_13 AC 58 ms
69,428 KB
testcase_14 AC 60 ms
69,304 KB
testcase_15 AC 61 ms
69,536 KB
testcase_16 AC 61 ms
68,044 KB
testcase_17 AC 62 ms
69,708 KB
testcase_18 AC 63 ms
68,444 KB
testcase_19 AC 61 ms
69,284 KB
testcase_20 AC 61 ms
68,568 KB
testcase_21 AC 60 ms
68,800 KB
testcase_22 AC 58 ms
68,648 KB
testcase_23 AC 59 ms
68,816 KB
testcase_24 AC 61 ms
68,960 KB
testcase_25 AC 59 ms
70,616 KB
testcase_26 AC 60 ms
68,944 KB
testcase_27 AC 59 ms
68,928 KB
testcase_28 AC 61 ms
69,192 KB
testcase_29 AC 61 ms
68,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
left = 1
right = N

for q in range(10):
    if right - left == 1:
        print("?", 1)
        x = int(input())
        continue

    mid = (left + right) >> 1
    print("?", mid)
    x = int(input())

    if x >= mid:
        left = mid
    else:
        right = mid

print("Yes", left, right)
0