結果

問題 No.2753 鳩の巣原理
ユーザー Yakumo221Yakumo221
提出日時 2024-05-11 08:22:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 70,836 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-05-11 08:22:25
合計ジャッジ時間 4,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
68,332 KB
testcase_01 AC 54 ms
69,120 KB
testcase_02 AC 56 ms
69,036 KB
testcase_03 AC 53 ms
68,896 KB
testcase_04 AC 65 ms
68,428 KB
testcase_05 AC 55 ms
69,900 KB
testcase_06 AC 53 ms
69,260 KB
testcase_07 AC 54 ms
68,968 KB
testcase_08 AC 53 ms
68,536 KB
testcase_09 AC 55 ms
68,820 KB
testcase_10 AC 52 ms
69,276 KB
testcase_11 AC 53 ms
69,284 KB
testcase_12 AC 52 ms
69,856 KB
testcase_13 AC 53 ms
69,076 KB
testcase_14 AC 54 ms
68,924 KB
testcase_15 AC 57 ms
70,836 KB
testcase_16 AC 52 ms
68,944 KB
testcase_17 AC 53 ms
68,512 KB
testcase_18 AC 54 ms
69,824 KB
testcase_19 AC 55 ms
69,228 KB
testcase_20 AC 55 ms
70,508 KB
testcase_21 AC 53 ms
68,936 KB
testcase_22 AC 55 ms
68,836 KB
testcase_23 AC 54 ms
68,888 KB
testcase_24 AC 52 ms
69,652 KB
testcase_25 AC 52 ms
69,712 KB
testcase_26 AC 54 ms
69,644 KB
testcase_27 AC 54 ms
69,124 KB
testcase_28 AC 54 ms
70,188 KB
testcase_29 AC 53 ms
68,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())


def question(i):
    print("?", i)
    ans = int(input())
    return ans

def answer(i, j):
    print("Yes", i, j)


ok = 1
ng = n+1


for i in range(10):
    mid = (ok+ng)//2

    ans = question(mid)
    if ans >= mid:
        ok = mid
    else:
        ng = mid

answer(ok, ok+1)

0