結果

問題 No.1959 Prefix MinMax
ユーザー ikomaikoma
提出日時 2022-05-27 22:48:04
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 410 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 93,536 KB
平均クエリ数 94.88
最終ジャッジ日時 2024-09-20 16:14:46
合計ジャッジ時間 6,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,216 KB
testcase_01 AC 64 ms
69,344 KB
testcase_02 AC 59 ms
69,088 KB
testcase_03 AC 64 ms
69,344 KB
testcase_04 AC 63 ms
69,600 KB
testcase_05 AC 66 ms
70,240 KB
testcase_06 AC 67 ms
70,112 KB
testcase_07 AC 144 ms
92,984 KB
testcase_08 AC 140 ms
93,248 KB
testcase_09 AC 137 ms
93,024 KB
testcase_10 AC 141 ms
93,280 KB
testcase_11 AC 140 ms
92,832 KB
testcase_12 AC 137 ms
92,512 KB
testcase_13 AC 140 ms
93,248 KB
testcase_14 AC 138 ms
93,132 KB
testcase_15 AC 145 ms
93,024 KB
testcase_16 AC 139 ms
92,984 KB
testcase_17 AC 138 ms
92,504 KB
testcase_18 AC 140 ms
92,256 KB
testcase_19 AC 157 ms
93,152 KB
testcase_20 AC 163 ms
93,060 KB
testcase_21 AC 157 ms
93,152 KB
testcase_22 AC 161 ms
93,152 KB
testcase_23 AC 158 ms
92,896 KB
testcase_24 AC 146 ms
93,536 KB
testcase_25 AC 140 ms
93,408 KB
testcase_26 AC 140 ms
92,664 KB
testcase_27 AC 139 ms
93,288 KB
testcase_28 AC 137 ms
92,800 KB
testcase_29 RE -
testcase_30 AC 164 ms
93,024 KB
testcase_31 AC 158 ms
93,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    N=int(input())
    A=[0]*(N-1)
    for i in range(1,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