結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー 双六双六
提出日時 2020-08-11 05:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-10-09 11:08:59
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 152 ms
66,304 KB
testcase_09 AC 46 ms
58,240 KB
testcase_10 AC 300 ms
67,072 KB
testcase_11 AC 113 ms
65,664 KB
testcase_12 AC 96 ms
65,024 KB
testcase_13 AC 111 ms
65,024 KB
testcase_14 AC 113 ms
64,896 KB
testcase_15 AC 221 ms
66,432 KB
testcase_16 AC 82 ms
65,024 KB
testcase_17 AC 84 ms
64,768 KB
testcase_18 AC 207 ms
66,560 KB
testcase_19 AC 111 ms
65,536 KB
testcase_20 AC 46 ms
57,984 KB
testcase_21 AC 173 ms
66,176 KB
testcase_22 AC 45 ms
58,496 KB
testcase_23 AC 41 ms
51,712 KB
testcase_24 AC 40 ms
52,352 KB
testcase_25 AC 309 ms
67,200 KB
testcase_26 AC 308 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

con = 998244353

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, Q = getlist()
	A = getlist()
	B = getlist()
	DP = [0] * (N + 1)
	DP[0] = 1
	for i in range(N):
		for j in range(N - 1, -1, -1):
			DP[j + 1] += DP[j]
			DP[j + 1] %= con
			DP[j] = (DP[j] * (A[i] - 1)) % con

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

if __name__ == '__main__':
	main()
0