結果

問題 No.1959 Prefix MinMax
ユーザー ikomaikoma
提出日時 2022-05-27 22:53:22
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 410 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 93,552 KB
平均クエリ数 94.88
最終ジャッジ日時 2024-09-20 17:20:19
合計ジャッジ時間 6,159 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,344 KB
testcase_01 AC 60 ms
69,728 KB
testcase_02 AC 55 ms
69,088 KB
testcase_03 AC 59 ms
68,960 KB
testcase_04 AC 59 ms
69,808 KB
testcase_05 AC 68 ms
69,984 KB
testcase_06 AC 63 ms
70,624 KB
testcase_07 AC 139 ms
93,552 KB
testcase_08 AC 137 ms
92,512 KB
testcase_09 AC 134 ms
92,768 KB
testcase_10 AC 135 ms
93,152 KB
testcase_11 AC 135 ms
93,152 KB
testcase_12 AC 137 ms
93,372 KB
testcase_13 AC 137 ms
93,036 KB
testcase_14 AC 136 ms
92,768 KB
testcase_15 AC 139 ms
93,280 KB
testcase_16 AC 137 ms
92,512 KB
testcase_17 AC 138 ms
93,084 KB
testcase_18 AC 141 ms
93,024 KB
testcase_19 AC 138 ms
93,024 KB
testcase_20 AC 141 ms
93,280 KB
testcase_21 AC 136 ms
93,116 KB
testcase_22 AC 134 ms
92,840 KB
testcase_23 AC 137 ms
93,016 KB
testcase_24 AC 139 ms
93,152 KB
testcase_25 AC 134 ms
93,288 KB
testcase_26 AC 132 ms
93,152 KB
testcase_27 AC 129 ms
93,016 KB
testcase_28 AC 137 ms
93,280 KB
testcase_29 AC 138 ms
92,836 KB
testcase_30 AC 139 ms
93,024 KB
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    N=int(input())
    A=[0]*(N-1)
    for i in range(0,N-1,2):
        A[i]=1
    ans=[0]*N
    for i in range(10):
        print("?", *A, flush=True)
        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]
            else:
                A[i-1]^=1
    print("!", *ans, flush=True)
0