結果

問題 No.269 見栄っ張りの募金活動
ユーザー kmjpkmjp
提出日時 2015-04-08 02:08:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,829 ms / 5,000 ms
コード長 785 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 77,476 KB
最終ジャッジ日時 2024-07-16 01:27:03
合計ジャッジ時間 12,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
32,292 KB
testcase_01 AC 196 ms
32,292 KB
testcase_02 AC 218 ms
32,292 KB
testcase_03 AC 308 ms
32,800 KB
testcase_04 AC 811 ms
48,032 KB
testcase_05 AC 197 ms
32,420 KB
testcase_06 AC 199 ms
32,296 KB
testcase_07 AC 1,829 ms
77,476 KB
testcase_08 AC 196 ms
32,288 KB
testcase_09 AC 895 ms
33,952 KB
testcase_10 AC 204 ms
32,160 KB
testcase_11 AC 337 ms
34,976 KB
testcase_12 AC 727 ms
32,292 KB
testcase_13 AC 375 ms
36,384 KB
testcase_14 AC 207 ms
32,288 KB
testcase_15 AC 356 ms
36,004 KB
testcase_16 AC 664 ms
33,316 KB
testcase_17 AC 279 ms
32,292 KB
testcase_18 AC 1,152 ms
50,976 KB
testcase_19 AC 431 ms
36,512 KB
testcase_20 AC 222 ms
32,288 KB
testcase_21 AC 217 ms
32,416 KB
testcase_22 AC 303 ms
34,208 KB
testcase_23 AC 216 ms
32,160 KB
testcase_24 AC 241 ms
32,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys
import math

N,S,K=map(int,raw_input().strip().split())
DP=[[0 for i in range(30005)] for j in range(105)]

mo = 1000000007

# 1人目だけは任意の(Nの倍数)円を寄付できる
for k in range(0,S+N,N):
	DP[1][k] = 1

# i番目の人
for i in range(2,N+1):
	# i番目の人が、(i-1)番の人より1円余分に払うと
	# 以降の人全体で(N+1-i)円払うことになる
	mult = N+1-i
	
	# t円にできるか?
	for t in range(0,S+1):
		# (i-1)番の人よりも最低K円余分に払う
		if t >= K*mult:
			DP[i][t] += DP[i-1][t - K*mult]
		
		# 既に全体(t-mult)円払っているが
		# もう1円(全体でmult円)余分に払うケース
		if t - mult >= 0:
			DP[i][t] += DP[i][t-mult]
		
		DP[i][t] %= mo

print DP[N][S]

0