結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー c-yanc-yan
提出日時 2020-05-31 20:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 68,028 KB
最終ジャッジ日時 2024-11-18 12:36:07
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,340 KB
testcase_01 AC 34 ms
53,428 KB
testcase_02 AC 34 ms
53,632 KB
testcase_03 AC 36 ms
51,956 KB
testcase_04 AC 34 ms
52,924 KB
testcase_05 AC 33 ms
52,372 KB
testcase_06 AC 34 ms
52,896 KB
testcase_07 AC 34 ms
53,016 KB
testcase_08 AC 127 ms
66,732 KB
testcase_09 AC 37 ms
58,464 KB
testcase_10 AC 250 ms
68,028 KB
testcase_11 AC 91 ms
66,344 KB
testcase_12 AC 81 ms
66,956 KB
testcase_13 AC 93 ms
65,784 KB
testcase_14 AC 96 ms
66,852 KB
testcase_15 AC 182 ms
67,552 KB
testcase_16 AC 77 ms
66,064 KB
testcase_17 AC 72 ms
67,552 KB
testcase_18 AC 173 ms
66,716 KB
testcase_19 AC 92 ms
67,196 KB
testcase_20 AC 37 ms
58,184 KB
testcase_21 AC 144 ms
67,064 KB
testcase_22 AC 39 ms
59,256 KB
testcase_23 AC 33 ms
52,620 KB
testcase_24 AC 33 ms
52,424 KB
testcase_25 AC 241 ms
67,128 KB
testcase_26 AC 213 ms
67,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,_=map(int,input().split())
t=[0]*(N+2)
t[0]=1
for a in map(int,input().split()):
 for i in range(N,-1,-1):
  t[i]=(t[i]*(a-1)+t[i-1])%998244353
for b in map(int,input().split()):
 print(t[b])
0