結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー Kiri8128Kiri8128
提出日時 2020-05-30 00:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-11-06 10:01:41
合計ジャッジ時間 3,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,960 KB
testcase_01 AC 39 ms
52,816 KB
testcase_02 AC 38 ms
52,840 KB
testcase_03 AC 44 ms
52,312 KB
testcase_04 AC 39 ms
53,112 KB
testcase_05 AC 39 ms
52,664 KB
testcase_06 AC 39 ms
52,408 KB
testcase_07 AC 38 ms
52,244 KB
testcase_08 AC 120 ms
76,304 KB
testcase_09 AC 45 ms
58,496 KB
testcase_10 AC 210 ms
76,420 KB
testcase_11 AC 95 ms
76,232 KB
testcase_12 AC 90 ms
76,520 KB
testcase_13 AC 99 ms
76,016 KB
testcase_14 AC 99 ms
76,416 KB
testcase_15 AC 163 ms
76,704 KB
testcase_16 AC 79 ms
76,160 KB
testcase_17 AC 82 ms
76,672 KB
testcase_18 AC 155 ms
76,668 KB
testcase_19 AC 97 ms
76,520 KB
testcase_20 AC 45 ms
58,624 KB
testcase_21 AC 134 ms
76,416 KB
testcase_22 AC 45 ms
58,632 KB
testcase_23 AC 40 ms
51,968 KB
testcase_24 AC 40 ms
52,224 KB
testcase_25 AC 217 ms
76,480 KB
testcase_26 AC 217 ms
76,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
P = 998244353
A = [int(a) - 1 for a in input().split()]
preX = [1]

for i in range(N):
    X = [0] * (i + 2)
    for j in range(i+1):
        X[j] += preX[j] * A[i]
        X[j+1] += preX[j]
        X[j] %= P
        X[j+1] %= P
    preX = X

B = [int(a) for a in input().split()]
for a in B:
    print(X[a])
0