結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tamatotamato
提出日時 2020-05-29 21:45:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 71,420 KB
最終ジャッジ日時 2024-11-06 03:27:50
合計ジャッジ時間 5,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, Q = map(int, input().split())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))

    dp = [[0] * (N+1) for _ in range(2)]
    dp[0][0] = 1
    for i in range(N):
        a = A[i]
        for j in range(N+1):
            dp[(i+1)%2][j] = 0
        for j in range(N+1):
            if dp[i%2][j] == 0:
                continue
            dp[(i+1)%2][j] = (dp[(i+1)%2][j] + dp[i%2][j] * (a - 1))%mod
            if j+1 <= N:
                dp[(i+1)%2][j+1] = (dp[(i+1)%2][j+1] + dp[i%2][j])%mod
    for b in B:
        print(dp[N%2][b])


if __name__ == '__main__':
    main()
0