結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 51 ms
69,164 KB
testcase_02 AC 54 ms
69,876 KB
testcase_03 AC 52 ms
68,556 KB
testcase_04 WA -
testcase_05 AC 54 ms
69,228 KB
testcase_06 AC 54 ms
68,408 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 51 ms
68,868 KB
testcase_11 WA -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 51 ms
69,084 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 53 ms
69,164 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