結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー Kiri8128Kiri8128
提出日時 2020-05-30 00:31:24
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 368 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 206,128 KB
最終ジャッジ日時 2024-11-06 09:56:38
合計ジャッジ時間 5,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,452 KB
testcase_01 AC 38 ms
52,588 KB
testcase_02 AC 38 ms
52,200 KB
testcase_03 AC 39 ms
53,352 KB
testcase_04 AC 39 ms
52,808 KB
testcase_05 AC 39 ms
53,140 KB
testcase_06 AC 39 ms
52,364 KB
testcase_07 AC 38 ms
52,280 KB
testcase_08 AC 208 ms
114,240 KB
testcase_09 AC 46 ms
61,028 KB
testcase_10 MLE -
testcase_11 AC 137 ms
91,228 KB
testcase_12 AC 120 ms
91,544 KB
testcase_13 AC 137 ms
91,088 KB
testcase_14 AC 155 ms
107,728 KB
testcase_15 MLE -
testcase_16 AC 99 ms
89,044 KB
testcase_17 AC 108 ms
90,660 KB
testcase_18 MLE -
testcase_19 AC 135 ms
91,160 KB
testcase_20 AC 45 ms
59,748 KB
testcase_21 MLE -
testcase_22 AC 44 ms
59,660 KB
testcase_23 AC 39 ms
53,384 KB
testcase_24 AC 38 ms
53,660 KB
testcase_25 MLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
P = 998244353
A = [int(a) - 1 for a in input().split()]
X = [[0] * (i+1) for i in range(N+1)]
X[0][0] = 1
for i in range(N):
    for j in range(i+1):
        X[i+1][j] += X[i][j] * A[i]
        X[i+1][j+1] += X[i][j]
        X[i+1][j] %= P
        X[i+1][j+1] %= P

B = [int(a) for a in input().split()]
for a in B:
    print(X[-1][a])
0