結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー stngstng
提出日時 2022-08-19 17:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 80,608 KB
最終ジャッジ日時 2024-10-08 01:52:06
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 42 ms
51,200 KB
testcase_02 AC 41 ms
51,328 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 39 ms
51,200 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 207 ms
76,800 KB
testcase_09 AC 45 ms
58,368 KB
testcase_10 AC 433 ms
79,232 KB
testcase_11 AC 147 ms
76,416 KB
testcase_12 AC 124 ms
75,904 KB
testcase_13 AC 148 ms
76,160 KB
testcase_14 AC 153 ms
76,032 KB
testcase_15 AC 311 ms
77,392 KB
testcase_16 AC 103 ms
76,380 KB
testcase_17 AC 105 ms
76,032 KB
testcase_18 AC 290 ms
77,184 KB
testcase_19 AC 140 ms
76,400 KB
testcase_20 AC 45 ms
58,240 KB
testcase_21 AC 236 ms
77,440 KB
testcase_22 AC 46 ms
59,264 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 39 ms
51,456 KB
testcase_25 AC 443 ms
78,720 KB
testcase_26 AC 446 ms
80,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n,q = map(int,input().split())
a = [int(i) for i in input().split()]
b = [int(i) for i in input().split()]

#dp = [[0]*(n+1) for i in range(n+1)]
dp = [0]*(n+1)
dp[0] = 1

for i in range(n):
    ndp = [0]*(n+1)
    for j in range(n+1):
        if j >= 1:
            ndp[j] = dp[j]*(a[i]-1)%mod + dp[j-1]%mod
        else:
            ndp[j] = dp[j]*(a[i]-1)%mod
        ndp[j] %= mod
    dp = ndp[:]

for i in range(q):
    print(dp[b[i]])
#print(dp[n])
0