結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 18:33:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 67,456 KB
最終ジャッジ日時 2024-11-24 06:41:57
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 33 ms
51,456 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 134 ms
65,920 KB
testcase_09 AC 38 ms
58,112 KB
testcase_10 AC 256 ms
67,456 KB
testcase_11 AC 94 ms
65,664 KB
testcase_12 AC 86 ms
65,152 KB
testcase_13 AC 98 ms
65,920 KB
testcase_14 AC 99 ms
65,664 KB
testcase_15 AC 187 ms
66,688 KB
testcase_16 AC 70 ms
65,152 KB
testcase_17 AC 72 ms
65,024 KB
testcase_18 AC 173 ms
66,688 KB
testcase_19 AC 93 ms
65,664 KB
testcase_20 AC 38 ms
57,472 KB
testcase_21 AC 143 ms
65,920 KB
testcase_22 AC 39 ms
58,880 KB
testcase_23 AC 33 ms
52,096 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 234 ms
66,432 KB
testcase_26 AC 209 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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