結果

問題 No.2753 鳩の巣原理
ユーザー rlangevinrlangevin
提出日時 2024-05-10 22:18:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 70,508 KB
平均クエリ数 10.80
最終ジャッジ日時 2024-05-10 22:18:17
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,060 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 52 ms
69,148 KB
testcase_05 AC 52 ms
69,068 KB
testcase_06 WA -
testcase_07 AC 53 ms
69,016 KB
testcase_08 AC 54 ms
69,368 KB
testcase_09 WA -
testcase_10 AC 53 ms
69,268 KB
testcase_11 AC 52 ms
68,872 KB
testcase_12 AC 52 ms
69,264 KB
testcase_13 WA -
testcase_14 AC 53 ms
69,412 KB
testcase_15 AC 53 ms
69,248 KB
testcase_16 AC 51 ms
70,036 KB
testcase_17 AC 53 ms
69,440 KB
testcase_18 AC 51 ms
70,052 KB
testcase_19 AC 52 ms
69,612 KB
testcase_20 AC 51 ms
70,220 KB
testcase_21 AC 54 ms
69,840 KB
testcase_22 AC 54 ms
69,624 KB
testcase_23 AC 53 ms
70,100 KB
testcase_24 AC 51 ms
69,504 KB
testcase_25 AC 53 ms
69,352 KB
testcase_26 AC 58 ms
70,268 KB
testcase_27 AC 60 ms
69,920 KB
testcase_28 AC 52 ms
69,304 KB
testcase_29 AC 53 ms
69,968 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 + 1) // 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()
0