結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー rlangevinrlangevin
提出日時 2023-01-30 12:43:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 78,520 KB
最終ジャッジ日時 2024-06-30 01:49:07
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,208 KB
testcase_01 AC 36 ms
52,008 KB
testcase_02 AC 38 ms
52,200 KB
testcase_03 AC 37 ms
53,456 KB
testcase_04 AC 37 ms
51,748 KB
testcase_05 AC 35 ms
52,880 KB
testcase_06 AC 34 ms
53,552 KB
testcase_07 AC 34 ms
52,604 KB
testcase_08 AC 177 ms
77,012 KB
testcase_09 AC 37 ms
60,212 KB
testcase_10 AC 359 ms
78,040 KB
testcase_11 AC 118 ms
76,280 KB
testcase_12 AC 102 ms
76,204 KB
testcase_13 AC 124 ms
76,184 KB
testcase_14 AC 125 ms
76,552 KB
testcase_15 AC 256 ms
76,892 KB
testcase_16 AC 90 ms
76,188 KB
testcase_17 AC 96 ms
76,504 KB
testcase_18 AC 237 ms
77,156 KB
testcase_19 AC 115 ms
76,320 KB
testcase_20 AC 37 ms
59,040 KB
testcase_21 AC 195 ms
76,692 KB
testcase_22 AC 37 ms
58,808 KB
testcase_23 AC 33 ms
52,444 KB
testcase_24 AC 36 ms
52,876 KB
testcase_25 AC 368 ms
78,344 KB
testcase_26 AC 363 ms
78,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
mod = 998244353

pre = [0] * (N + 5)
pre[0] = 1
for i in range(N):
    dp = [0] * (N + 5)
    for j in range(N):
        dp[j + 1] += pre[j]
        dp[j] += pre[j] * (A[i] - 1)
        dp[j] %= mod
        dp[j + 1] %= mod
    dp, pre = pre, dp

for b in B:
    print(pre[b])

0