結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー titia
提出日時 2020-05-29 22:29:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,084 KB
最終ジャッジ日時 2024-11-06 05:50:20
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 TLE * 1 -- * 18
権限があれば一括ダウンロードができます

ソースコード

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