結果

問題 No.269 見栄っ張りの募金活動
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-11 22:34:53
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 422 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 79,628 KB
最終ジャッジ日時 2024-04-15 15:14:11
合計ジャッジ時間 8,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
75,520 KB
testcase_01 AC 91 ms
75,280 KB
testcase_02 AC 92 ms
75,544 KB
testcase_03 AC 256 ms
79,628 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,K=map(int,raw_input().split())
S-=K*N*(N-1)/2
if S < 0:
    print 0
    exit()

dp=[[-1 for i in range(S+1)] for k in range(N+1)]
mod=1000000007

def rec(N,S):
    if dp[N][S]!=-1:
        return dp[N][S]
    if N==1:
        dp[N][S]=1
        return dp[N][S]
    dp[N][S]=0
    for i in range(S/N+1):
        dp[N][S]+=rec(N-1,S-i*N)
        dp[N][S]%=mod
    #print N,S,dp[N][S]
    return dp[N][S]

print rec(N,S)
0