結果

問題 No.2753 鳩の巣原理
ユーザー 👑 rin204rin204
提出日時 2024-05-10 22:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 70,688 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-10 22:05:56
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
68,912 KB
testcase_01 AC 50 ms
69,492 KB
testcase_02 AC 53 ms
68,984 KB
testcase_03 AC 54 ms
70,468 KB
testcase_04 AC 51 ms
68,956 KB
testcase_05 AC 53 ms
68,276 KB
testcase_06 AC 52 ms
68,508 KB
testcase_07 AC 53 ms
68,712 KB
testcase_08 AC 54 ms
69,404 KB
testcase_09 AC 52 ms
70,032 KB
testcase_10 AC 53 ms
69,656 KB
testcase_11 AC 51 ms
69,496 KB
testcase_12 AC 54 ms
68,796 KB
testcase_13 AC 53 ms
68,808 KB
testcase_14 AC 52 ms
69,936 KB
testcase_15 AC 50 ms
69,216 KB
testcase_16 AC 53 ms
69,568 KB
testcase_17 AC 61 ms
69,192 KB
testcase_18 AC 51 ms
70,688 KB
testcase_19 AC 51 ms
69,316 KB
testcase_20 AC 53 ms
68,344 KB
testcase_21 AC 52 ms
69,092 KB
testcase_22 AC 50 ms
68,552 KB
testcase_23 AC 51 ms
69,692 KB
testcase_24 AC 51 ms
69,224 KB
testcase_25 AC 52 ms
69,816 KB
testcase_26 AC 51 ms
70,152 KB
testcase_27 AC 53 ms
69,608 KB
testcase_28 AC 53 ms
69,576 KB
testcase_29 AC 53 ms
68,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = 0
r = n + 1
l_ = 0
r_ = n
c = 10
while r - l > 1:
    c -= 1
    mid = (l + r) // 2
    print("? {}".format(mid), flush=True)
    x = int(input())
    if mid - l > x - l_:
        r = mid
        r_ = x
    else:
        l = mid
        l_ = x

for _ in range(c):
    print("? 1", flush=True)
print("Yes {} {}".format(l, r), flush=True)
0