結果

問題 No.1959 Prefix MinMax
ユーザー ああいいああいい
提出日時 2022-05-28 17:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 93,920 KB
平均クエリ数 26.72
最終ジャッジ日時 2024-09-20 23:22:36
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,704 KB
testcase_01 AC 61 ms
69,088 KB
testcase_02 AC 64 ms
68,960 KB
testcase_03 AC 59 ms
68,704 KB
testcase_04 AC 61 ms
68,960 KB
testcase_05 AC 62 ms
68,832 KB
testcase_06 AC 61 ms
68,960 KB
testcase_07 AC 120 ms
93,152 KB
testcase_08 AC 112 ms
93,068 KB
testcase_09 AC 113 ms
93,576 KB
testcase_10 AC 110 ms
93,920 KB
testcase_11 AC 112 ms
93,280 KB
testcase_12 AC 111 ms
93,280 KB
testcase_13 AC 123 ms
93,280 KB
testcase_14 AC 123 ms
93,024 KB
testcase_15 AC 121 ms
93,792 KB
testcase_16 AC 112 ms
93,652 KB
testcase_17 AC 110 ms
93,920 KB
testcase_18 AC 109 ms
93,024 KB
testcase_19 AC 113 ms
93,024 KB
testcase_20 AC 120 ms
93,088 KB
testcase_21 AC 112 ms
93,492 KB
testcase_22 AC 112 ms
93,516 KB
testcase_23 AC 113 ms
93,076 KB
testcase_24 AC 120 ms
93,408 KB
testcase_25 AC 112 ms
93,200 KB
testcase_26 AC 112 ms
93,376 KB
testcase_27 AC 115 ms
93,332 KB
testcase_28 AC 113 ms
92,872 KB
testcase_29 AC 112 ms
93,312 KB
testcase_30 AC 111 ms
93,536 KB
testcase_31 AC 112 ms
92,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def calc(N):
    now = 0
    ans = [0] * N
    print("?",end = " ")
    for _ in range(N-1):
        print(now,end = " ")
        now ^= 1
    print()
    B = list(map(int,input().split()))
    ans[0] = B[0]
    for i in range(1,N):
        if B[i-1] != B[i]:
            ans[i] = B[i]
    now = 1
    print("?",end = " ")
    for _ in range(N - 1):
        print(now,end = " ")
        now ^= 1
    print()
    B = list(map(int,input().split()))
    for i in range(1,N):
        if B[i-1] != B[i]:
            ans[i] = B[i]
    print("!",*ans)
for _ in range(T):
    N = int(input())
    calc(N)
0