結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー convexineqconvexineq
提出日時 2021-05-09 00:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 69,304 KB
最終ジャッジ日時 2024-09-17 07:51:57
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,208 KB
testcase_01 AC 33 ms
52,520 KB
testcase_02 AC 33 ms
53,076 KB
testcase_03 AC 33 ms
52,216 KB
testcase_04 AC 33 ms
52,676 KB
testcase_05 AC 34 ms
51,904 KB
testcase_06 AC 33 ms
52,032 KB
testcase_07 AC 33 ms
53,012 KB
testcase_08 AC 86 ms
67,492 KB
testcase_09 AC 40 ms
58,364 KB
testcase_10 AC 152 ms
68,180 KB
testcase_11 AC 70 ms
65,556 KB
testcase_12 AC 63 ms
65,932 KB
testcase_13 AC 70 ms
65,384 KB
testcase_14 AC 71 ms
65,268 KB
testcase_15 AC 114 ms
68,584 KB
testcase_16 AC 57 ms
65,808 KB
testcase_17 AC 59 ms
65,480 KB
testcase_18 AC 110 ms
68,020 KB
testcase_19 AC 70 ms
66,492 KB
testcase_20 AC 36 ms
59,960 KB
testcase_21 AC 94 ms
67,168 KB
testcase_22 AC 36 ms
58,804 KB
testcase_23 AC 34 ms
52,684 KB
testcase_24 AC 32 ms
52,280 KB
testcase_25 AC 139 ms
68,120 KB
testcase_26 AC 128 ms
69,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n,q = map(int,input().split())
*a, = map(int,input().split())
dp = [0]*(n+1)
dp[0] = 1
for i,ai in enumerate(a):
    for j in range(1,i+2)[::-1]:
        dp[j] = (dp[j]*(ai-1) + dp[j-1])%MOD
    dp[0] = dp[0]*(ai-1)%MOD
*b, = map(int,input().split())
for i in b:
    print(dp[i])
0