結果

問題 No.2753 鳩の巣原理
ユーザー detteiuudetteiuu
提出日時 2024-06-21 23:16:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 70,908 KB
平均クエリ数 11.83
最終ジャッジ日時 2024-06-21 23:16:53
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,816 KB
testcase_01 AC 58 ms
69,568 KB
testcase_02 AC 61 ms
68,300 KB
testcase_03 AC 56 ms
69,872 KB
testcase_04 AC 58 ms
69,032 KB
testcase_05 AC 57 ms
68,616 KB
testcase_06 AC 61 ms
68,796 KB
testcase_07 AC 57 ms
69,708 KB
testcase_08 AC 58 ms
70,460 KB
testcase_09 AC 56 ms
69,264 KB
testcase_10 AC 56 ms
69,004 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 57 ms
69,036 KB
testcase_14 AC 56 ms
70,084 KB
testcase_15 AC 55 ms
69,152 KB
testcase_16 WA -
testcase_17 AC 61 ms
69,480 KB
testcase_18 AC 56 ms
69,240 KB
testcase_19 AC 55 ms
69,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 57 ms
69,036 KB
testcase_23 AC 57 ms
69,676 KB
testcase_24 AC 60 ms
68,408 KB
testcase_25 AC 58 ms
70,172 KB
testcase_26 AC 56 ms
68,472 KB
testcase_27 AC 55 ms
68,744 KB
testcase_28 AC 58 ms
70,828 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
0