結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー H3PO4H3PO4
提出日時 2020-05-29 22:07:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,110 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,440 KB
最終ジャッジ日時 2024-11-06 04:58:31
合計ジャッジ時間 19,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,064 KB
testcase_01 AC 531 ms
44,324 KB
testcase_02 AC 522 ms
43,936 KB
testcase_03 AC 515 ms
44,188 KB
testcase_04 AC 520 ms
44,064 KB
testcase_05 AC 524 ms
44,072 KB
testcase_06 AC 529 ms
44,364 KB
testcase_07 AC 524 ms
44,440 KB
testcase_08 AC 758 ms
44,320 KB
testcase_09 AC 540 ms
44,072 KB
testcase_10 AC 1,095 ms
44,372 KB
testcase_11 AC 665 ms
44,320 KB
testcase_12 AC 639 ms
44,064 KB
testcase_13 AC 663 ms
44,320 KB
testcase_14 AC 678 ms
44,204 KB
testcase_15 AC 917 ms
44,320 KB
testcase_16 AC 613 ms
43,940 KB
testcase_17 AC 600 ms
44,320 KB
testcase_18 AC 883 ms
44,324 KB
testcase_19 AC 646 ms
44,072 KB
testcase_20 AC 546 ms
44,196 KB
testcase_21 AC 794 ms
44,196 KB
testcase_22 AC 525 ms
43,940 KB
testcase_23 AC 524 ms
44,324 KB
testcase_24 AC 538 ms
44,324 KB
testcase_25 AC 1,106 ms
44,320 KB
testcase_26 AC 1,110 ms
43,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, Q = map(int, input().split())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
MOD = 998244353

dp = np.zeros(N + 2, dtype=np.int64)
dp[1] = 1
for i, a in enumerate(A):
    new_dp = np.zeros_like(dp)
    new_dp[1:] = dp[1:] * (a - 1) + dp[:-1]
    new_dp %= MOD
    dp = new_dp

for b in B:
    print(dp[b + 1])
0