結果

問題 No.1959 Prefix MinMax
ユーザー hir355hir355
提出日時 2022-05-27 23:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 94,720 KB
平均クエリ数 97.97
最終ジャッジ日時 2024-09-20 17:21:25
合計ジャッジ時間 7,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,752 KB
testcase_01 AC 70 ms
71,904 KB
testcase_02 AC 61 ms
70,240 KB
testcase_03 AC 63 ms
71,520 KB
testcase_04 AC 69 ms
71,520 KB
testcase_05 AC 71 ms
72,032 KB
testcase_06 AC 72 ms
72,516 KB
testcase_07 AC 205 ms
94,720 KB
testcase_08 AC 192 ms
94,136 KB
testcase_09 AC 189 ms
94,504 KB
testcase_10 AC 188 ms
94,260 KB
testcase_11 AC 189 ms
94,432 KB
testcase_12 AC 193 ms
94,408 KB
testcase_13 AC 202 ms
94,336 KB
testcase_14 AC 201 ms
94,560 KB
testcase_15 AC 200 ms
94,576 KB
testcase_16 AC 189 ms
94,092 KB
testcase_17 AC 187 ms
94,560 KB
testcase_18 AC 183 ms
94,484 KB
testcase_19 AC 186 ms
94,304 KB
testcase_20 AC 198 ms
94,640 KB
testcase_21 AC 188 ms
94,432 KB
testcase_22 AC 191 ms
94,176 KB
testcase_23 AC 196 ms
94,320 KB
testcase_24 AC 206 ms
94,560 KB
testcase_25 AC 190 ms
94,432 KB
testcase_26 AC 191 ms
94,444 KB
testcase_27 AC 191 ms
94,316 KB
testcase_28 AC 189 ms
94,128 KB
testcase_29 AC 186 ms
94,304 KB
testcase_30 AC 191 ms
94,176 KB
testcase_31 AC 185 ms
94,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import randint
t = int(input())
for _ in range(t):
    n = int(input())
    ans = [0] * n
    a = [0] * (n - 1)
    for _ in range(5):
        for i in range(n - 1):
            a[i] = randint(0, 1)
        print('?', *a)
        b = list(map(int, input().split()))
        cnt = 1
        ans[0] = b[0]
        for i in range(n - 1):
            if b[i] != b[i + 1]:
                ans[i + 1] = b[i + 1]
    for _ in range(5):
        for i in range(n - 1):
            if ans[i + 1] == 0:
                a[i] ^= 1
        print('?', *a)
        b = list(map(int, input().split()))
        cnt = 1
        ans[0] = b[0]
        for i in range(n - 1):
            if b[i] != b[i + 1]:
                ans[i + 1] = b[i + 1]
    print('!', *ans)
0