結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー proriboneproribone
提出日時 2020-11-26 15:37:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,052 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,448 KB
最終ジャッジ日時 2024-07-23 20:51:47
合計ジャッジ時間 20,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
43,688 KB
testcase_01 AC 503 ms
44,060 KB
testcase_02 AC 507 ms
44,192 KB
testcase_03 AC 504 ms
43,808 KB
testcase_04 AC 506 ms
43,924 KB
testcase_05 AC 502 ms
43,940 KB
testcase_06 AC 508 ms
43,804 KB
testcase_07 AC 516 ms
44,064 KB
testcase_08 AC 717 ms
44,064 KB
testcase_09 AC 514 ms
43,820 KB
testcase_10 AC 1,019 ms
43,804 KB
testcase_11 AC 631 ms
44,188 KB
testcase_12 AC 611 ms
44,064 KB
testcase_13 AC 629 ms
44,192 KB
testcase_14 AC 637 ms
44,188 KB
testcase_15 AC 852 ms
43,684 KB
testcase_16 AC 561 ms
44,448 KB
testcase_17 AC 570 ms
43,812 KB
testcase_18 AC 821 ms
43,800 KB
testcase_19 AC 624 ms
43,812 KB
testcase_20 AC 507 ms
43,940 KB
testcase_21 AC 748 ms
43,940 KB
testcase_22 AC 509 ms
43,808 KB
testcase_23 AC 511 ms
44,192 KB
testcase_24 AC 520 ms
43,940 KB
testcase_25 AC 1,052 ms
44,068 KB
testcase_26 AC 1,046 ms
44,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
MOD=998244353
N,Q=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))

f=np.zeros(N+1,np.int64)
f[0]=1

for A in a:
    ff=f*(A-1)
    ff[1:]+=f[:-1]
    ff%=MOD
    f=ff

for B in b:
    print(f[B])
0