結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,880 KB
testcase_01 AC 62 ms
69,692 KB
testcase_02 AC 58 ms
69,404 KB
testcase_03 AC 57 ms
70,212 KB
testcase_04 AC 60 ms
71,128 KB
testcase_05 AC 62 ms
71,380 KB
testcase_06 AC 61 ms
70,468 KB
testcase_07 AC 130 ms
92,972 KB
testcase_08 AC 133 ms
93,108 KB
testcase_09 AC 130 ms
92,872 KB
testcase_10 AC 128 ms
92,924 KB
testcase_11 AC 125 ms
93,376 KB
testcase_12 AC 131 ms
93,196 KB
testcase_13 AC 130 ms
92,968 KB
testcase_14 AC 126 ms
93,320 KB
testcase_15 AC 131 ms
92,840 KB
testcase_16 AC 133 ms
92,520 KB
testcase_17 AC 128 ms
92,764 KB
testcase_18 AC 129 ms
93,156 KB
testcase_19 AC 132 ms
92,840 KB
testcase_20 AC 130 ms
93,288 KB
testcase_21 AC 133 ms
92,684 KB
testcase_22 AC 130 ms
92,788 KB
testcase_23 AC 127 ms
93,728 KB
testcase_24 AC 132 ms
93,244 KB
testcase_25 AC 130 ms
92,772 KB
testcase_26 AC 130 ms
93,264 KB
testcase_27 AC 132 ms
93,328 KB
testcase_28 AC 125 ms
92,480 KB
testcase_29 RE -
testcase_30 AC 123 ms
92,864 KB
testcase_31 AC 122 ms
92,568 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