結果

問題 No.2753 鳩の巣原理
ユーザー mkawa2mkawa2
提出日時 2024-05-10 22:11:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,888 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-12-20 05:51:36
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 54 ms
27,160 KB
testcase_02 AC 54 ms
27,480 KB
testcase_03 AC 57 ms
27,224 KB
testcase_04 WA -
testcase_05 AC 52 ms
27,224 KB
testcase_06 AC 55 ms
27,352 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 53 ms
27,464 KB
testcase_10 AC 52 ms
27,080 KB
testcase_11 WA -
testcase_12 AC 52 ms
27,080 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 51 ms
27,208 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 54 ms
27,208 KB
testcase_21 AC 54 ms
27,208 KB
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
27,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ask(i):
    print("?",i+1,flush=True)
    return int(input())-1

n=int(input())
a=[0]*n
a[n-1]=n-1
l,r=0,n-1
for _ in range(10):
    if l+1==r:
        ask(0)
    else:
        i=(l+r)//2
        c=ask(i)
        if a[i]-a[l]<i-l:r=i
        else:l=i

print("Yes",l+1,r+1)
0