結果

問題 No.2753 鳩の巣原理
ユーザー pitPpitP
提出日時 2024-05-10 21:56:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 81,932 KB
平均クエリ数 10.40
最終ジャッジ日時 2024-12-20 05:19:28
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
68,756 KB
testcase_02 AC 63 ms
69,544 KB
testcase_03 AC 63 ms
69,544 KB
testcase_04 WA -
testcase_05 AC 61 ms
69,868 KB
testcase_06 AC 68 ms
68,952 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 68 ms
68,932 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 62 ms
69,544 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 62 ms
70,692 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