結果

問題 No.2753 鳩の巣原理
ユーザー rlangevinrlangevin
提出日時 2024-05-10 22:16:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 468 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 70,432 KB
平均クエリ数 10.57
最終ジャッジ日時 2024-05-10 22:17:08
合計ジャッジ時間 5,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,040 KB
testcase_01 AC 58 ms
69,616 KB
testcase_02 AC 57 ms
69,416 KB
testcase_03 WA -
testcase_04 AC 57 ms
68,488 KB
testcase_05 AC 55 ms
70,148 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 58 ms
69,580 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 56 ms
68,932 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 58 ms
69,492 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 62 ms
69,584 KB
testcase_21 WA -
testcase_22 AC 57 ms
69,424 KB
testcase_23 AC 58 ms
69,280 KB
testcase_24 AC 60 ms
70,432 KB
testcase_25 AC 59 ms
69,196 KB
testcase_26 AC 59 ms
70,416 KB
testcase_27 AC 57 ms
69,488 KB
testcase_28 AC 57 ms
69,572 KB
testcase_29 AC 59 ms
70,012 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 = 1, N
for i in range(10):
    mid = (l + r) // 2
    if ans[mid] != -1:
        ans[mid] = query(N)
        continue
    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()
0