結果
問題 | No.1066 #いろいろな色 / Red and Blue and more various colors (Easy) |
ユーザー |
![]() |
提出日時 | 2020-05-29 23:08:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 476 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 26,916 KB |
最終ジャッジ日時 | 2024-11-06 07:31:43 |
合計ジャッジ時間 | 4,031 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | WA * 5 TLE * 1 -- * 18 |
ソースコード
import sys input = sys.stdin.readline def main(): N, Q = map(int,input().split()) A = list(map(int,input().split())) B = list(map(int,input().split())) dp = [0]*(N+1) dp[0] = A[0]-1 dp[1] = 1 for k in range(1,N): temp = [0]*(N+1) temp[0] = dp[0]*(A[k]-1) for l in range(1,N+1): temp[l] = dp[l-1] + dp[l]*(A[k]-1) dp = temp[::] for e in B: print(dp[e]) if __name__ == '__main__': main()