結果

問題 No.269 見栄っ張りの募金活動
ユーザー shobonvipshobonvip
提出日時 2022-07-29 20:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,632 KB
最終ジャッジ日時 2024-07-19 11:24:22
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 47 ms
61,440 KB
testcase_03 AC 50 ms
63,872 KB
testcase_04 AC 64 ms
71,552 KB
testcase_05 AC 44 ms
60,672 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 118 ms
91,632 KB
testcase_08 AC 36 ms
52,736 KB
testcase_09 AC 70 ms
70,528 KB
testcase_10 AC 45 ms
60,800 KB
testcase_11 AC 55 ms
67,456 KB
testcase_12 AC 66 ms
68,992 KB
testcase_13 AC 56 ms
65,152 KB
testcase_14 AC 49 ms
65,408 KB
testcase_15 AC 51 ms
65,920 KB
testcase_16 AC 63 ms
68,992 KB
testcase_17 AC 50 ms
63,232 KB
testcase_18 AC 94 ms
87,352 KB
testcase_19 AC 55 ms
66,176 KB
testcase_20 AC 48 ms
63,616 KB
testcase_21 AC 48 ms
64,896 KB
testcase_22 AC 48 ms
63,872 KB
testcase_23 AC 46 ms
61,696 KB
testcase_24 AC 48 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

n,s,k = map(int,input().split())

#dp[i][j] : i番目までつかって, 今
dp = [[0] * (n+1) for i in range(s+1)]
dp[0][0] = 1

for i in range(1,s+1):
	for j in range(1,n+1):
		if i-j >= 0:
			dp[i][j] = (dp[i-1][j-1] + dp[i-j][j]) % mod

for i in range(s+1):
	for j in range(1,n+1):
		dp[i][j] = (dp[i][j] + dp[i][j-1]) % mod

#print(*dp,sep="\n")

j = s - n * (n-1) // 2 * k
ans = 0
if j >= 0:
	ans = dp[j][n]
print(ans)
0