結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー ntudantuda
提出日時 2024-11-14 22:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,724 KB
最終ジャッジ日時 2024-11-14 22:54:17
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,192 KB
testcase_01 AC 37 ms
53,612 KB
testcase_02 AC 37 ms
51,956 KB
testcase_03 AC 37 ms
53,184 KB
testcase_04 AC 38 ms
52,876 KB
testcase_05 AC 37 ms
52,964 KB
testcase_06 AC 42 ms
52,692 KB
testcase_07 AC 36 ms
52,404 KB
testcase_08 AC 175 ms
76,408 KB
testcase_09 AC 42 ms
59,140 KB
testcase_10 AC 360 ms
76,508 KB
testcase_11 AC 128 ms
76,440 KB
testcase_12 AC 110 ms
76,308 KB
testcase_13 AC 127 ms
76,508 KB
testcase_14 AC 132 ms
76,724 KB
testcase_15 AC 261 ms
76,556 KB
testcase_16 AC 91 ms
76,436 KB
testcase_17 AC 99 ms
76,436 KB
testcase_18 AC 244 ms
76,500 KB
testcase_19 AC 124 ms
76,424 KB
testcase_20 AC 41 ms
59,000 KB
testcase_21 AC 202 ms
76,372 KB
testcase_22 AC 45 ms
61,172 KB
testcase_23 AC 37 ms
52,340 KB
testcase_24 AC 37 ms
51,756 KB
testcase_25 AC 383 ms
76,436 KB
testcase_26 AC 373 ms
76,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * (N + 2)
dp[0] = 1
for i in range(N):
    for j in reversed(range(N + 1)):
        dp[j] += dp[j - 1] * (A[i] - 1)
        dp[j] %= MOD
dp = dp[::-1][1:]
for b in B:
    print(dp[b])
0