結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tcltktcltk
提出日時 2021-01-17 18:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 944 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-11-29 23:08:53
合計ジャッジ時間 8,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
88,704 KB
testcase_01 AC 151 ms
88,960 KB
testcase_02 AC 148 ms
88,832 KB
testcase_03 AC 148 ms
88,832 KB
testcase_04 AC 147 ms
88,832 KB
testcase_05 AC 149 ms
88,832 KB
testcase_06 AC 150 ms
88,960 KB
testcase_07 AC 150 ms
88,832 KB
testcase_08 AC 317 ms
89,984 KB
testcase_09 AC 155 ms
89,344 KB
testcase_10 AC 560 ms
90,240 KB
testcase_11 AC 250 ms
89,984 KB
testcase_12 AC 230 ms
89,984 KB
testcase_13 AC 257 ms
89,728 KB
testcase_14 AC 262 ms
89,600 KB
testcase_15 AC 438 ms
90,240 KB
testcase_16 AC 207 ms
89,728 KB
testcase_17 AC 214 ms
89,600 KB
testcase_18 AC 410 ms
89,984 KB
testcase_19 AC 255 ms
89,728 KB
testcase_20 AC 161 ms
89,472 KB
testcase_21 AC 357 ms
89,600 KB
testcase_22 AC 156 ms
89,088 KB
testcase_23 AC 155 ms
88,832 KB
testcase_24 AC 152 ms
88,832 KB
testcase_25 AC 584 ms
90,624 KB
testcase_26 AC 348 ms
89,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """4 3
# 1 3 3 3
# 3 1 4
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 998244353

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

    dp = [0 for _ in range(N+1)]
    dp[0] = 1
    for i in range(N):
        dp1 = [0 for _ in range(N+1)]
        for k in range(N+1):
            if dp[k] > 0:
                dp1[k] = (dp1[k] + dp[k] * (A[i] - 1)) % MOD
                dp1[k+1] = (dp1[k+1] + dp[k]) % MOD
        dp = dp1

    for b in B:
        print(dp[b])


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