結果

問題 No.2753 鳩の巣原理
ユーザー rlangevinrlangevin
提出日時 2024-05-10 22:30:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 84,108 KB
平均クエリ数 10.47
最終ジャッジ日時 2024-05-10 22:30:12
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 59 ms
70,476 KB
testcase_03 AC 57 ms
69,828 KB
testcase_04 RE -
testcase_05 AC 58 ms
69,752 KB
testcase_06 RE -
testcase_07 AC 59 ms
68,472 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 57 ms
69,532 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 59 ms
70,496 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 73 ms
68,616 KB
testcase_21 AC 65 ms
69,276 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 56 ms
69,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = int(input())
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()
        
if ans[N - 1] == N - 1:
    print("Yes", N - 1, N)
elif ans[2] == 1:
    print("Yes", 1, 2)

assert False
        
0