結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 59 ms
69,292 KB
testcase_02 AC 59 ms
70,688 KB
testcase_03 AC 60 ms
68,960 KB
testcase_04 WA -
testcase_05 AC 58 ms
69,868 KB
testcase_06 AC 57 ms
69,692 KB
testcase_07 AC 62 ms
69,880 KB
testcase_08 WA -
testcase_09 AC 56 ms
69,124 KB
testcase_10 AC 57 ms
68,804 KB
testcase_11 AC 63 ms
68,900 KB
testcase_12 AC 59 ms
69,588 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 59 ms
69,212 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 58 ms
70,228 KB
testcase_21 AC 60 ms
69,424 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 57 ms
70,164 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()
        
print("Yes", 1, 2)
0