結果

問題 No.269 見栄っ張りの募金活動
ユーザー 藤原正貴藤原正貴
提出日時 2020-05-26 18:12:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 532 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 275,456 KB
最終ジャッジ日時 2024-10-13 02:48:49
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 37 ms
51,936 KB
testcase_02 RE -
testcase_03 AC 55 ms
68,120 KB
testcase_04 AC 178 ms
131,952 KB
testcase_05 AC 40 ms
58,772 KB
testcase_06 AC 36 ms
53,964 KB
testcase_07 AC 517 ms
275,456 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 57 ms
69,760 KB
testcase_12 RE -
testcase_13 AC 82 ms
83,372 KB
testcase_14 AC 43 ms
60,416 KB
testcase_15 AC 75 ms
83,416 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 160 ms
121,708 KB
testcase_19 AC 79 ms
83,120 KB
testcase_20 AC 43 ms
59,164 KB
testcase_21 AC 42 ms
60,556 KB
testcase_22 AC 64 ms
73,648 KB
testcase_23 AC 46 ms
61,692 KB
testcase_24 AC 43 ms
59,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,K = map(int,input().split())
S -= (K+(N-1)*K)*(N-1)//2
mod = 10**9 +7
if S == 0:
    print(1)
elif S < 0:
    print(0)
else:
    #dp[i][j]->i人でjを値の組み合わせの重複なしで分割するパターン数
    dp = [[0]*(S+1) for _ in range(N+1)]
    for i in range(N+1):
        dp[i][0]=1
    for j in range(S+1):
        dp[1][j] = 1
    for i in range(2,N+1):
        for j in range(1,S+1):
            dp[i][j] += dp[i-1][j]
            if j-i>=0:
                dp[i][j] += dp[i][j-i]

print(dp[-1][-1]%mod)

0