結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
68,472 KB
testcase_01 AC 54 ms
69,400 KB
testcase_02 AC 55 ms
68,792 KB
testcase_03 AC 61 ms
68,968 KB
testcase_04 AC 54 ms
68,472 KB
testcase_05 AC 57 ms
69,148 KB
testcase_06 AC 55 ms
70,120 KB
testcase_07 AC 53 ms
69,816 KB
testcase_08 AC 53 ms
69,868 KB
testcase_09 AC 58 ms
68,792 KB
testcase_10 AC 59 ms
69,224 KB
testcase_11 AC 51 ms
69,052 KB
testcase_12 AC 53 ms
69,412 KB
testcase_13 WA -
testcase_14 AC 52 ms
69,784 KB
testcase_15 AC 53 ms
68,668 KB
testcase_16 AC 55 ms
69,096 KB
testcase_17 AC 54 ms
69,380 KB
testcase_18 AC 54 ms
69,168 KB
testcase_19 AC 56 ms
68,804 KB
testcase_20 AC 53 ms
68,796 KB
testcase_21 WA -
testcase_22 AC 53 ms
70,788 KB
testcase_23 AC 55 ms
69,036 KB
testcase_24 AC 55 ms
69,064 KB
testcase_25 AC 55 ms
69,828 KB
testcase_26 AC 60 ms
69,504 KB
testcase_27 AC 55 ms
68,672 KB
testcase_28 AC 55 ms
70,204 KB
testcase_29 AC 55 ms
69,768 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
    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-1, l)
0