結果

問題 No.2753 鳩の巣原理
ユーザー rlangevinrlangevin
提出日時 2024-05-10 22:35:44
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 440 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 84,252 KB
平均クエリ数 10.93
最終ジャッジ日時 2024-12-20 06:29:09
合計ジャッジ時間 4,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,016 KB
testcase_01 AC 60 ms
68,924 KB
testcase_02 AC 61 ms
69,976 KB
testcase_03 AC 61 ms
68,924 KB
testcase_04 AC 61 ms
69,668 KB
testcase_05 AC 62 ms
68,844 KB
testcase_06 AC 61 ms
70,172 KB
testcase_07 AC 63 ms
70,092 KB
testcase_08 AC 60 ms
69,668 KB
testcase_09 AC 61 ms
69,136 KB
testcase_10 AC 60 ms
70,288 KB
testcase_11 AC 62 ms
69,308 KB
testcase_12 AC 62 ms
68,540 KB
testcase_13 RE -
testcase_14 AC 62 ms
70,124 KB
testcase_15 AC 64 ms
69,880 KB
testcase_16 AC 62 ms
69,892 KB
testcase_17 AC 62 ms
69,884 KB
testcase_18 AC 61 ms
69,692 KB
testcase_19 AC 62 ms
69,440 KB
testcase_20 AC 61 ms
70,088 KB
testcase_21 RE -
testcase_22 AC 62 ms
69,156 KB
testcase_23 AC 62 ms
69,692 KB
testcase_24 AC 61 ms
69,364 KB
testcase_25 AC 61 ms
69,392 KB
testcase_26 AC 62 ms
68,916 KB
testcase_27 AC 63 ms
68,804 KB
testcase_28 AC 62 ms
69,408 KB
testcase_29 AC 61 ms
69,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def query(n):
    print("?", n, flush=True)
    return int(input())

N = int(input())
ans = [-1] * (N + 1)
ans[-1] = N - 1
l, r = 0, N
for i in range(10):
    mid = (l + r) // 2
    ans[mid] = query(mid)
    if ans[r] - ans[mid] == r - mid:
        r = mid
    else:
        l = mid
     
for i in range(N):
    if ans[i] == ans[i + 1] and ans[i] != -1:
        print("Yes", i, i+1)
        exit()
        
assert False
print("Yes", l, l+1)
0