結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー H20H20
提出日時 2020-12-24 11:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-09-21 16:50:47
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 35 ms
51,960 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 120 ms
76,032 KB
testcase_09 AC 43 ms
58,880 KB
testcase_10 AC 215 ms
76,428 KB
testcase_11 AC 94 ms
76,160 KB
testcase_12 AC 88 ms
76,308 KB
testcase_13 AC 98 ms
76,160 KB
testcase_14 AC 102 ms
76,364 KB
testcase_15 AC 161 ms
76,572 KB
testcase_16 AC 79 ms
76,160 KB
testcase_17 AC 82 ms
76,416 KB
testcase_18 AC 155 ms
76,288 KB
testcase_19 AC 94 ms
76,168 KB
testcase_20 AC 43 ms
58,240 KB
testcase_21 AC 132 ms
76,220 KB
testcase_22 AC 41 ms
58,240 KB
testcase_23 AC 37 ms
52,224 KB
testcase_24 AC 38 ms
51,456 KB
testcase_25 AC 219 ms
76,356 KB
testcase_26 AC 224 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
mod = 998244353
DP = [0]*(N+10)
DP[0] = 1
for i in range(N):
    for j in reversed(range(i+1)):
        DP[j+1] = (DP[j+1] + DP[j])%mod
        DP[j] = (DP[j]*(A[i]-1))%mod

for i in range(Q):
    print(DP[B[i]])


0