結果

問題 No.269 見栄っ張りの募金活動
ユーザー konsin_tokagekonsin_tokage
提出日時 2018-05-11 07:39:07
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 480 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 55,880 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-07-16 02:05:42
合計ジャッジ時間 12,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 87 ms
6,944 KB
testcase_04 AC 4,846 ms
10,056 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 TLE -
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1,158 ms
10,624 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3,295 ms
6,944 KB
testcase_12 AC 864 ms
10,436 KB
testcase_13 AC 997 ms
6,944 KB
testcase_14 AC 1,733 ms
6,944 KB
testcase_15 AC 1,424 ms
6,944 KB
testcase_16 AC 1,324 ms
9,800 KB
testcase_17 AC 82 ms
6,948 KB
testcase_18 AC 4,116 ms
14,532 KB
testcase_19 AC 997 ms
7,628 KB
testcase_20 AC 393 ms
6,944 KB
testcase_21 AC 1,528 ms
6,944 KB
testcase_22 AC 342 ms
6,944 KB
testcase_23 AC 22 ms
6,944 KB
testcase_24 AC 852 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define ll long long
ll dp[101][20001];
int main(){
    int n, s, k;
    cin >> n >> s >> k;
    dp[n][0] = 1;
    for(int i=n-1; i>=0; --i){
        for(int j=0; j<=s; ++j){
            for(int v=0; v<=j; ++v){
                int w=v+(v+k)*(n-1-i);
                if(j<w) break;
                dp[i][j] += dp[i+1][j-w];
                dp[i][j] %= 1000000007;
            }
        }
    }
    cout << dp[0][s] << endl;
    return 0;
}
0