結果

問題 No.269 見栄っ張りの募金活動
ユーザー hiremasahiremasa
提出日時 2020-09-11 19:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 76,684 KB
最終ジャッジ日時 2024-06-08 01:02:50
合計ジャッジ時間 2,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,188 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
53,008 KB
testcase_03 AC 45 ms
62,616 KB
testcase_04 AC 55 ms
65,864 KB
testcase_05 AC 40 ms
58,944 KB
testcase_06 AC 37 ms
52,568 KB
testcase_07 AC 73 ms
76,684 KB
testcase_08 AC 35 ms
53,956 KB
testcase_09 AC 35 ms
52,952 KB
testcase_10 AC 35 ms
53,132 KB
testcase_11 AC 44 ms
60,892 KB
testcase_12 AC 37 ms
53,196 KB
testcase_13 AC 46 ms
63,040 KB
testcase_14 AC 42 ms
60,832 KB
testcase_15 AC 44 ms
61,768 KB
testcase_16 AC 37 ms
52,260 KB
testcase_17 AC 35 ms
52,484 KB
testcase_18 AC 49 ms
66,204 KB
testcase_19 AC 44 ms
62,368 KB
testcase_20 AC 41 ms
61,172 KB
testcase_21 AC 43 ms
60,940 KB
testcase_22 AC 43 ms
62,284 KB
testcase_23 AC 40 ms
59,792 KB
testcase_24 AC 42 ms
60,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#https://yukicoder.me/problems/no/269
N, S, K = map(int, input().split())
M=S-K*N*(N-1)//2
#dp[i][j] :=jをi分割の総数
if M < 0:
    print(0)
else:
	dp=[[0]*(M+1) for _ in range(N+1)]
	dp[0][0]=1
	for i in range(N+1):
		for j in range(M+1):
			if j-i>=0:
				dp[i][j]=(dp[i-1][j]+dp[i][j-i])%(10**9+7)
			else:
				dp[i][j]=dp[i-1][j]
	print(dp[-1][-1])
0