結果

問題 No.269 見栄っ張りの募金活動
ユーザー nasadigitalnasadigital
提出日時 2015-08-22 14:27:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 461 bytes
コンパイル時間 1,181 ms
コンパイル使用メモリ 158,916 KB
実行使用メモリ 12,352 KB
最終ジャッジ日時 2024-07-16 01:34:21
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
11,356 KB
testcase_01 AC 5 ms
11,308 KB
testcase_02 AC 5 ms
11,440 KB
testcase_03 AC 5 ms
11,400 KB
testcase_04 AC 15 ms
12,092 KB
testcase_05 AC 5 ms
11,324 KB
testcase_06 AC 4 ms
11,160 KB
testcase_07 AC 29 ms
12,276 KB
testcase_08 AC 6 ms
11,300 KB
testcase_09 AC 11 ms
11,708 KB
testcase_10 AC 4 ms
11,200 KB
testcase_11 AC 7 ms
12,352 KB
testcase_12 AC 8 ms
11,652 KB
testcase_13 AC 8 ms
11,616 KB
testcase_14 AC 5 ms
12,116 KB
testcase_15 AC 7 ms
11,740 KB
testcase_16 AC 10 ms
11,772 KB
testcase_17 AC 5 ms
11,356 KB
testcase_18 AC 18 ms
11,884 KB
testcase_19 AC 8 ms
11,780 KB
testcase_20 AC 6 ms
11,556 KB
testcase_21 AC 6 ms
12,092 KB
testcase_22 AC 6 ms
11,484 KB
testcase_23 AC 4 ms
11,292 KB
testcase_24 AC 6 ms
11,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007
using namespace std;

int n,s,k;
int dp[101][20001];

int rek(int cur,int sc){
    if(cur==0 && sc==0)
        return 1;
    if(cur<0)
        return 0;
    if(sc<0)
        return 0;
    if(dp[cur][sc]==-1){
        dp[cur][sc]=(rek(cur-1,sc-(n-cur)*k)+rek(cur,sc-(n-cur)))%MOD;
    }
    return dp[cur][sc];
}


int main()
{
    memset(dp,-1,sizeof(dp));
    cin>>n>>s>>k;
    cout<<rek(n-1,s);
    return 0;
}
0