結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー ttrttr
提出日時 2020-05-29 22:28:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-04-23 23:26:24
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 163 ms
76,800 KB
testcase_09 AC 46 ms
58,880 KB
testcase_10 AC 330 ms
78,080 KB
testcase_11 AC 127 ms
76,544 KB
testcase_12 AC 112 ms
76,416 KB
testcase_13 AC 128 ms
76,672 KB
testcase_14 AC 137 ms
76,672 KB
testcase_15 AC 241 ms
77,696 KB
testcase_16 AC 92 ms
76,416 KB
testcase_17 AC 96 ms
76,160 KB
testcase_18 AC 230 ms
77,056 KB
testcase_19 AC 132 ms
76,928 KB
testcase_20 AC 42 ms
59,392 KB
testcase_21 AC 196 ms
77,184 KB
testcase_22 AC 49 ms
59,264 KB
testcase_23 AC 35 ms
51,840 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 338 ms
78,080 KB
testcase_26 AC 339 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int, input().split())
A = [int(a) for a in input().split()]
B = [int(b) for b in input().split()]
mod = 998244353

L = [[0]*(N+1) for _ in range(2)]
L[0][0] = 1
for i in range(N):
    a = i%2
    b = (i+1)%2
    L[b] = [0]*(N+1)
    for j in range(i+2):
        L[b][j] += L[a][j]*(A[i]-1)
        if j > 0:
            L[b][j] += L[a][j-1]
        L[b][j] %= mod

for b in B:
    print(L[N%2][b])
0