結果

問題 No.269 見栄っ張りの募金活動
ユーザー crow_vanishcrow_vanish
提出日時 2019-08-26 12:20:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 418 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,900 KB
最終ジャッジ日時 2024-11-07 18:56:21
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 37 ms
10,752 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 73 ms
12,672 KB
testcase_04 AC 750 ms
38,900 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 RE -
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 157 ms
17,280 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 228 ms
20,056 KB
testcase_14 RE -
testcase_15 AC 211 ms
18,964 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 650 ms
37,480 KB
testcase_19 AC 189 ms
18,516 KB
testcase_20 AC 56 ms
12,468 KB
testcase_21 AC 57 ms
14,200 KB
testcase_22 AC 130 ms
15,956 KB
testcase_23 AC 39 ms
11,264 KB
testcase_24 AC 72 ms
13,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000)
n,s,k=map(int,input().split())
res=s-k*n*(n-1)//2
MOD=10**9+7
if res<0:
    print(0)
    sys.exit()
dp=[[-1]*(n+1) for i in range(res+1)]
def rec(a,b):
    if a<0:
        return 0
    if dp[a][b]!=-1:
        return dp[a][b]
    if a==0 or b==1:
        dp[a][b]=1
        return 1
    x=rec(a,b-1)
    y=rec(a-b,b)
    z=(x+y)%MOD
    dp[a][b]=z
    return z
print(rec(res,n))
0