結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,840 KB
testcase_01 AC 38 ms
53,408 KB
testcase_02 AC 39 ms
52,748 KB
testcase_03 AC 40 ms
52,448 KB
testcase_04 AC 39 ms
52,836 KB
testcase_05 AC 39 ms
52,652 KB
testcase_06 AC 41 ms
52,868 KB
testcase_07 AC 40 ms
53,792 KB
testcase_08 AC 273 ms
69,796 KB
testcase_09 AC 46 ms
60,712 KB
testcase_10 AC 643 ms
70,800 KB
testcase_11 AC 179 ms
69,480 KB
testcase_12 AC 150 ms
69,724 KB
testcase_13 AC 185 ms
68,544 KB
testcase_14 AC 193 ms
69,476 KB
testcase_15 AC 436 ms
70,332 KB
testcase_16 AC 112 ms
67,976 KB
testcase_17 AC 122 ms
69,012 KB
testcase_18 AC 406 ms
71,252 KB
testcase_19 AC 178 ms
69,148 KB
testcase_20 AC 50 ms
61,652 KB
testcase_21 AC 322 ms
70,568 KB
testcase_22 AC 49 ms
62,240 KB
testcase_23 AC 39 ms
52,912 KB
testcase_24 AC 40 ms
52,384 KB
testcase_25 AC 651 ms
71,420 KB
testcase_26 AC 281 ms
70,112 KB
権限があれば一括ダウンロードができます

ソースコード

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