結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー wolgnikwolgnik
提出日時 2020-05-29 22:06:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 70,220 KB
最終ジャッジ日時 2024-11-06 04:56:03
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 36 ms
52,676 KB
testcase_02 AC 37 ms
52,580 KB
testcase_03 AC 36 ms
53,248 KB
testcase_04 AC 36 ms
53,168 KB
testcase_05 AC 36 ms
52,356 KB
testcase_06 AC 37 ms
52,196 KB
testcase_07 AC 38 ms
52,204 KB
testcase_08 AC 159 ms
67,420 KB
testcase_09 AC 44 ms
59,488 KB
testcase_10 AC 324 ms
70,220 KB
testcase_11 AC 115 ms
68,592 KB
testcase_12 AC 97 ms
67,912 KB
testcase_13 AC 111 ms
67,336 KB
testcase_14 AC 116 ms
67,436 KB
testcase_15 AC 235 ms
68,184 KB
testcase_16 AC 79 ms
66,568 KB
testcase_17 AC 84 ms
66,296 KB
testcase_18 AC 217 ms
69,652 KB
testcase_19 AC 110 ms
68,168 KB
testcase_20 AC 44 ms
59,940 KB
testcase_21 AC 181 ms
67,996 KB
testcase_22 AC 43 ms
59,288 KB
testcase_23 AC 37 ms
52,776 KB
testcase_24 AC 37 ms
52,540 KB
testcase_25 AC 332 ms
70,080 KB
testcase_26 AC 161 ms
69,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
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[1] = 1
dp[0] = a[0] - 1
#print(dp)
for i in range(1, N):
  for j in range(N, -1, -1):
    if dp[j] == 0: continue
    dp[j + 1] += dp[j]
    dp[j + 1] %= mod
    dp[j] += dp[j] * (a[i] - 2)
    dp[j] %= mod
for x in b: print(dp[x])
0