結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,780 KB
testcase_01 AC 62 ms
69,284 KB
testcase_02 AC 60 ms
68,416 KB
testcase_03 AC 60 ms
69,752 KB
testcase_04 AC 61 ms
69,104 KB
testcase_05 AC 62 ms
69,672 KB
testcase_06 AC 63 ms
68,648 KB
testcase_07 AC 60 ms
69,412 KB
testcase_08 AC 63 ms
69,628 KB
testcase_09 AC 62 ms
70,276 KB
testcase_10 AC 61 ms
68,940 KB
testcase_11 AC 62 ms
69,484 KB
testcase_12 AC 60 ms
69,576 KB
testcase_13 AC 60 ms
69,324 KB
testcase_14 AC 62 ms
69,684 KB
testcase_15 AC 63 ms
70,012 KB
testcase_16 AC 64 ms
69,516 KB
testcase_17 AC 62 ms
69,040 KB
testcase_18 AC 61 ms
70,480 KB
testcase_19 AC 61 ms
69,036 KB
testcase_20 AC 63 ms
69,072 KB
testcase_21 AC 62 ms
69,060 KB
testcase_22 AC 61 ms
69,628 KB
testcase_23 AC 61 ms
69,100 KB
testcase_24 AC 62 ms
68,748 KB
testcase_25 AC 64 ms
68,824 KB
testcase_26 AC 64 ms
69,744 KB
testcase_27 AC 65 ms
69,080 KB
testcase_28 AC 64 ms
69,604 KB
testcase_29 AC 64 ms
68,996 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