結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー wattaiheiwattaihei
提出日時 2020-05-29 21:54:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 77,216 KB
最終ジャッジ日時 2024-11-06 04:09:11
合計ジャッジ時間 3,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,376 KB
testcase_01 AC 38 ms
52,768 KB
testcase_02 AC 37 ms
53,416 KB
testcase_03 AC 37 ms
52,612 KB
testcase_04 AC 38 ms
53,280 KB
testcase_05 AC 37 ms
52,964 KB
testcase_06 AC 37 ms
53,024 KB
testcase_07 AC 37 ms
52,312 KB
testcase_08 AC 99 ms
76,420 KB
testcase_09 AC 41 ms
58,300 KB
testcase_10 AC 160 ms
76,944 KB
testcase_11 AC 81 ms
76,388 KB
testcase_12 AC 76 ms
76,632 KB
testcase_13 AC 82 ms
76,496 KB
testcase_14 AC 82 ms
76,484 KB
testcase_15 AC 124 ms
76,704 KB
testcase_16 AC 69 ms
76,284 KB
testcase_17 AC 73 ms
76,100 KB
testcase_18 AC 120 ms
76,288 KB
testcase_19 AC 80 ms
76,408 KB
testcase_20 AC 42 ms
58,456 KB
testcase_21 AC 105 ms
76,304 KB
testcase_22 AC 42 ms
58,360 KB
testcase_23 AC 37 ms
52,768 KB
testcase_24 AC 37 ms
52,304 KB
testcase_25 AC 161 ms
76,536 KB
testcase_26 AC 161 ms
77,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod = 998244353

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

dp = [1]
for i, a in enumerate(A):
    ndp = [0]*(i+2)
    ndp[0] = dp[0]*(a-1) % mod
    ndp[i+1] = 1
    for j in range(1, i+1):
        ndp[j] = (dp[j]*(a-1) + dp[j-1]) % mod
    dp = ndp

for b in B:
    print(dp[b])
0