結果

問題 No.1959 Prefix MinMax
ユーザー 👑 rin204rin204
提出日時 2022-05-27 22:06:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 94,148 KB
平均クエリ数 26.72
最終ジャッジ日時 2024-09-20 16:31:03
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
71,136 KB
testcase_01 AC 62 ms
70,880 KB
testcase_02 AC 61 ms
69,984 KB
testcase_03 AC 63 ms
71,008 KB
testcase_04 AC 63 ms
71,264 KB
testcase_05 AC 62 ms
71,356 KB
testcase_06 AC 63 ms
71,216 KB
testcase_07 AC 102 ms
93,664 KB
testcase_08 AC 99 ms
93,764 KB
testcase_09 AC 101 ms
93,536 KB
testcase_10 AC 101 ms
93,596 KB
testcase_11 AC 104 ms
94,148 KB
testcase_12 AC 100 ms
93,664 KB
testcase_13 AC 100 ms
93,664 KB
testcase_14 AC 101 ms
93,316 KB
testcase_15 AC 100 ms
93,460 KB
testcase_16 AC 102 ms
93,788 KB
testcase_17 AC 102 ms
93,528 KB
testcase_18 AC 100 ms
93,536 KB
testcase_19 AC 100 ms
93,920 KB
testcase_20 AC 101 ms
93,536 KB
testcase_21 AC 105 ms
93,784 KB
testcase_22 AC 104 ms
93,536 KB
testcase_23 AC 103 ms
93,644 KB
testcase_24 AC 101 ms
93,396 KB
testcase_25 AC 102 ms
93,408 KB
testcase_26 AC 102 ms
93,512 KB
testcase_27 AC 100 ms
93,576 KB
testcase_28 AC 101 ms
93,536 KB
testcase_29 AC 100 ms
93,536 KB
testcase_30 AC 101 ms
93,940 KB
testcase_31 AC 101 ms
93,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random



def solve():
    n = int(input())
    A = [i & 1 for i in range(n - 1)]
    print("?", *A, flush=True)
    B1 = list(map(int, input().split()))
    A = [(i & 1) ^ 1 for i in range(n - 1)]
    print("?", *A, flush=True)
    B2 = list(map(int, input().split()))
    P = [-1] * n
    used = [False] * (n + 1)
    for i in range(n):
        if not used[B1[i]]:
            P[i] = B1[i]
        else:
            P[i] = B2[i]
        used[P[i]] = True
    print("!", *P, flush=True)



for _ in range(int(input())):
    solve()
0