結果

問題 No.269 見栄っ張りの募金活動
ユーザー hogeover30hogeover30
提出日時 2016-04-10 23:30:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 57,336 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-07-16 01:54:34
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 10 ms
9,728 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 22 ms
19,584 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 11 ms
10,496 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 9 ms
9,088 KB
testcase_13 AC 4 ms
5,632 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 9 ms
8,704 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 14 ms
13,440 KB
testcase_19 AC 5 ms
6,016 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

const int mod=1e9+7;
long dp[101][22010];

int main()
{
    int n, s, k;
    cin>>n>>s>>k;

    for(int j=s; j>=0; j-=n) dp[0][j]=1;
    for(int i=0; i<n; ++i) {
        for(int j=s; j>=0; --j)
            dp[i+1][j]=(dp[i+1][j+(n-i-1)]+dp[i][j+k*(n-i-1)])%mod;
    }
    cout<<dp[n][0]<<endl;
}
0