結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,456 KB
testcase_01 AC 36 ms
51,328 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 34 ms
51,328 KB
testcase_07 AC 33 ms
51,456 KB
testcase_08 AC 126 ms
66,176 KB
testcase_09 AC 36 ms
57,728 KB
testcase_10 AC 251 ms
67,200 KB
testcase_11 AC 94 ms
66,048 KB
testcase_12 AC 83 ms
65,280 KB
testcase_13 AC 95 ms
66,048 KB
testcase_14 AC 99 ms
65,792 KB
testcase_15 AC 183 ms
66,560 KB
testcase_16 AC 71 ms
65,408 KB
testcase_17 AC 71 ms
65,280 KB
testcase_18 AC 176 ms
66,432 KB
testcase_19 AC 93 ms
65,536 KB
testcase_20 AC 38 ms
57,984 KB
testcase_21 AC 145 ms
66,048 KB
testcase_22 AC 41 ms
59,136 KB
testcase_23 AC 36 ms
52,096 KB
testcase_24 AC 35 ms
52,224 KB
testcase_25 AC 240 ms
66,432 KB
testcase_26 AC 209 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def r():return 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