結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー titiatitia
提出日時 2020-05-29 22:29:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-11-06 18:39:56
合計ジャッジ時間 4,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 145 ms
66,816 KB
testcase_09 AC 44 ms
57,984 KB
testcase_10 AC 283 ms
68,736 KB
testcase_11 AC 106 ms
66,048 KB
testcase_12 AC 95 ms
66,048 KB
testcase_13 AC 107 ms
66,176 KB
testcase_14 AC 111 ms
66,560 KB
testcase_15 AC 208 ms
67,712 KB
testcase_16 AC 78 ms
65,796 KB
testcase_17 AC 82 ms
65,536 KB
testcase_18 AC 195 ms
67,328 KB
testcase_19 AC 104 ms
66,304 KB
testcase_20 AC 48 ms
58,240 KB
testcase_21 AC 164 ms
67,584 KB
testcase_22 AC 46 ms
58,752 KB
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 39 ms
51,968 KB
testcase_25 AC 265 ms
67,712 KB
testcase_26 AC 239 ms
67,456 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+3)
DP[0]=1

for a in A:
    for i in range(N,-1,-1):
        DP[i]=(DP[i]*(a-1)+DP[i-1])%mod

for b in B:
    print(DP[b])
    
0