結果

問題 No.2753 鳩の巣原理
ユーザー pitPpitP
提出日時 2024-05-10 21:58:46
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 226 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 83,636 KB
平均クエリ数 8.60
最終ジャッジ日時 2024-05-10 21:58:53
合計ジャッジ時間 5,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 52 ms
69,188 KB
testcase_02 AC 54 ms
69,276 KB
testcase_03 AC 52 ms
70,152 KB
testcase_04 AC 51 ms
69,844 KB
testcase_05 AC 51 ms
68,656 KB
testcase_06 AC 51 ms
69,948 KB
testcase_07 AC 54 ms
68,856 KB
testcase_08 RE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
69,888 KB
testcase_17 WA -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 RE -
testcase_29 AC 55 ms
69,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
left = 1
right = N
for _ in range(10):
    mid = left + (left + right) >> 1
    print("?", mid)
    x = int(input())
    if x >= mid:
        left = mid
    else:
        right = mid

print("Yes", left, right)
0