結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-22 22:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-10-10 17:01:54
合計ジャッジ時間 5,311 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 220 ms
76,416 KB
testcase_09 AC 49 ms
59,392 KB
testcase_10 AC 459 ms
77,568 KB
testcase_11 AC 155 ms
76,288 KB
testcase_12 AC 134 ms
76,416 KB
testcase_13 AC 156 ms
76,544 KB
testcase_14 AC 162 ms
76,544 KB
testcase_15 AC 332 ms
76,800 KB
testcase_16 AC 109 ms
76,544 KB
testcase_17 AC 114 ms
76,288 KB
testcase_18 AC 308 ms
76,800 KB
testcase_19 AC 152 ms
76,416 KB
testcase_20 AC 48 ms
59,392 KB
testcase_21 AC 254 ms
76,928 KB
testcase_22 AC 50 ms
59,776 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 479 ms
77,696 KB
testcase_26 AC 225 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
mod = 998244353

dp = [0]*(n+1)
dp[0] = 1
for a in A:
    ndp = [0]*(n+1)
    for i in range(n+1)[::-1]:
        if dp[i] == 0:
            continue
        ndp[i+1] += dp[i]
        ndp[i+1] %= mod
        ndp[i] += dp[i]*(a-1)%mod
        ndp[i] %= mod 
    dp = ndp
for b in B:
    print(dp[b])
0