結果

問題 No.8046 yukicoderの過去問
ユーザー るさるさ
提出日時 2019-04-01 21:54:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 179 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,368 KB
最終ジャッジ日時 2024-11-26 22:35:52
合計ジャッジ時間 10,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
19,108 KB
testcase_01 AC 38 ms
33,368 KB
testcase_02 AC 36 ms
19,360 KB
testcase_03 AC 195 ms
22,948 KB
testcase_04 AC 34 ms
19,232 KB
testcase_05 AC 107 ms
13,184 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

k=int(input())
n=int(input())
x=list(map(int,input().split()))

c=[0 for i in range(k+200000)]
c[0]=1
for i in range(k):
	for j in x:
		c[i+j]=(c[i+j]+c[i])%1000000007
print(c[k])
0