結果

問題 No.2753 鳩の巣原理
ユーザー rlangevinrlangevin
提出日時 2024-05-10 22:35:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 70,860 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-12-20 06:28:42
合計ジャッジ時間 4,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,852 KB
testcase_01 AC 64 ms
68,940 KB
testcase_02 AC 62 ms
69,548 KB
testcase_03 AC 64 ms
69,452 KB
testcase_04 AC 62 ms
70,132 KB
testcase_05 AC 62 ms
69,384 KB
testcase_06 AC 62 ms
68,824 KB
testcase_07 AC 63 ms
69,076 KB
testcase_08 AC 64 ms
69,548 KB
testcase_09 AC 61 ms
69,756 KB
testcase_10 AC 60 ms
68,832 KB
testcase_11 AC 61 ms
68,556 KB
testcase_12 AC 60 ms
69,560 KB
testcase_13 WA -
testcase_14 AC 65 ms
69,772 KB
testcase_15 AC 63 ms
69,404 KB
testcase_16 AC 62 ms
70,860 KB
testcase_17 AC 61 ms
69,148 KB
testcase_18 AC 62 ms
70,004 KB
testcase_19 AC 61 ms
69,652 KB
testcase_20 AC 64 ms
69,228 KB
testcase_21 WA -
testcase_22 AC 61 ms
70,488 KB
testcase_23 AC 62 ms
69,020 KB
testcase_24 AC 63 ms
69,260 KB
testcase_25 AC 64 ms
70,224 KB
testcase_26 AC 63 ms
69,760 KB
testcase_27 AC 63 ms
69,384 KB
testcase_28 AC 62 ms
70,056 KB
testcase_29 AC 63 ms
69,424 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()
        
print("Yes", l, l+1)
0