結果
問題 |
No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
|
ユーザー |
![]() |
提出日時 | 2020-06-11 22:11:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 367 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 250,912 KB |
最終ジャッジ日時 | 2024-06-24 03:23:38 |
合計ジャッジ時間 | 4,221 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 5 MLE * 1 -- * 18 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n,q=map(int,input().split()) A=[int(i) for i in input().split()] B=[int(i) for i in input().split()] mod=998244353 DP=[[0]*(n+1) for i in range(n+1)] for i in range(n+1): DP[i][0]=1 for i,a in enumerate(A): for j in range(i+1): DP[i+1][j+1]=((a-1)*DP[i][j]+DP[i][j+1])%mod for b in B: print(DP[n][n-b])