結果

問題 No.2753 鳩の巣原理
ユーザー detteiuudetteiuu
提出日時 2024-06-21 23:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 70,688 KB
平均クエリ数 11.00
最終ジャッジ日時 2024-06-21 23:18:11
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
69,936 KB
testcase_01 AC 69 ms
69,184 KB
testcase_02 AC 63 ms
68,956 KB
testcase_03 AC 67 ms
69,796 KB
testcase_04 AC 62 ms
69,712 KB
testcase_05 AC 60 ms
69,208 KB
testcase_06 AC 60 ms
69,488 KB
testcase_07 AC 60 ms
69,180 KB
testcase_08 AC 60 ms
69,544 KB
testcase_09 AC 61 ms
68,576 KB
testcase_10 AC 62 ms
69,004 KB
testcase_11 AC 60 ms
68,612 KB
testcase_12 AC 59 ms
68,912 KB
testcase_13 AC 71 ms
69,268 KB
testcase_14 AC 60 ms
70,688 KB
testcase_15 AC 60 ms
69,656 KB
testcase_16 AC 60 ms
70,200 KB
testcase_17 AC 59 ms
69,568 KB
testcase_18 AC 60 ms
69,696 KB
testcase_19 AC 61 ms
68,752 KB
testcase_20 AC 61 ms
69,104 KB
testcase_21 AC 62 ms
68,888 KB
testcase_22 AC 59 ms
69,240 KB
testcase_23 AC 60 ms
69,936 KB
testcase_24 AC 60 ms
69,288 KB
testcase_25 AC 70 ms
68,548 KB
testcase_26 AC 60 ms
69,040 KB
testcase_27 AC 61 ms
69,416 KB
testcase_28 AC 60 ms
69,436 KB
testcase_29 AC 61 ms
70,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = [-1]*(N+1)
left = 0
right = N+1
for _ in range(10):
    mid = (left+right)//2
    print("?", mid)
    n = int(input())
    A[mid] = n
    if n < mid:
        right = mid
    else:
        left = mid

D = dict()
for i in range(1, N+1):
    if A[i] == -1:
        continue
    if A[i] not in D:
        D[A[i]] = i
    else:
        print("Yes", D[A[i]], i)
        break
0