結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 46 ms
27,096 KB
testcase_02 AC 48 ms
27,224 KB
testcase_03 AC 50 ms
27,352 KB
testcase_04 WA -
testcase_05 AC 46 ms
27,096 KB
testcase_06 AC 45 ms
27,224 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 50 ms
27,464 KB
testcase_10 AC 46 ms
27,208 KB
testcase_11 WA -
testcase_12 AC 46 ms
27,368 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 46 ms
27,592 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
27,464 KB
testcase_21 AC 46 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 45 ms
27,336 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