結果
| 問題 |
No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
|
| コンテスト | |
| ユーザー |
c-yan
|
| 提出日時 | 2020-05-30 09:43:44 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 311 bytes |
| コンパイル時間 | 408 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 16,512 KB |
| 最終ジャッジ日時 | 2024-11-07 04:21:58 |
| 合計ジャッジ時間 | 6,808 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 6 TLE * 2 -- * 16 |
ソースコード
N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
dp = [0] * (N + 2)
dp[1] = 1
dp[0] = A[0] - 1
for i in range(1, N):
for j in range(i + 1, -1, -1):
dp[i] = (dp[i] * (A[i] - 1) + dp[i - 1]) % 998244353
print('\n'.join(str(dp[b]) for b in B))
c-yan