結果
問題 |
No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
|
ユーザー |
![]() |
提出日時 | 2020-12-24 11:09:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 224 ms / 2,000 ms |
コード長 | 316 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 76,572 KB |
最終ジャッジ日時 | 2024-09-21 16:50:47 |
合計ジャッジ時間 | 3,751 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
N,Q = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) mod = 998244353 DP = [0]*(N+10) DP[0] = 1 for i in range(N): for j in reversed(range(i+1)): DP[j+1] = (DP[j+1] + DP[j])%mod DP[j] = (DP[j]*(A[i]-1))%mod for i in range(Q): print(DP[B[i]])