結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー qibqib
提出日時 2022-10-24 17:49:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-07-02 20:54:10
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 35 ms
53,252 KB
testcase_02 AC 35 ms
52,832 KB
testcase_03 AC 34 ms
52,108 KB
testcase_04 AC 35 ms
52,564 KB
testcase_05 AC 33 ms
52,348 KB
testcase_06 AC 33 ms
52,072 KB
testcase_07 AC 34 ms
53,352 KB
testcase_08 AC 118 ms
75,920 KB
testcase_09 AC 38 ms
58,492 KB
testcase_10 AC 216 ms
76,332 KB
testcase_11 AC 98 ms
75,912 KB
testcase_12 AC 83 ms
75,904 KB
testcase_13 AC 94 ms
76,136 KB
testcase_14 AC 92 ms
76,096 KB
testcase_15 AC 159 ms
76,136 KB
testcase_16 AC 72 ms
75,740 KB
testcase_17 AC 72 ms
76,172 KB
testcase_18 AC 146 ms
76,536 KB
testcase_19 AC 90 ms
76,432 KB
testcase_20 AC 41 ms
59,012 KB
testcase_21 AC 132 ms
76,220 KB
testcase_22 AC 39 ms
58,900 KB
testcase_23 AC 35 ms
53,068 KB
testcase_24 AC 36 ms
51,744 KB
testcase_25 AC 224 ms
76,632 KB
testcase_26 AC 212 ms
76,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n, q = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

dp = [(a[0] - 1) % MOD, 1, 0]
for i in range(1, n):
	ndp = [0 for _ in range(i + 3)]
	ndp[0] = (dp[0] * (a[i] - 1)) % MOD
	for j in range(1, i + 2):
		ndp[j] = (dp[j] * (a[i] - 1) + dp[j - 1]) % MOD
	dp = ndp

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