結果

問題 No.269 見栄っ張りの募金活動
ユーザー finefine
提出日時 2016-04-03 01:18:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,450 ms / 5,000 ms
コード長 697 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 162,396 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-07-16 01:55:34
合計ジャッジ時間 17,741 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 13 ms
5,376 KB
testcase_04 AC 3,113 ms
8,960 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 4,450 ms
19,328 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1,523 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 645 ms
5,376 KB
testcase_14 AC 1,301 ms
5,376 KB
testcase_15 AC 921 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 953 ms
8,704 KB
testcase_19 AC 305 ms
5,376 KB
testcase_20 AC 230 ms
5,376 KB
testcase_21 AC 1,100 ms
5,376 KB
testcase_22 AC 226 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 634 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    const long long MOD = 1000000007;
    int n, s, k;
    cin >> n >> s >> k;
    if (s >= n * (n - 1) * k / 2) s -= n * (n - 1) * k / 2;
    else {
        cout << 0 << "\n";
        return 0;
    }
    vector< vector<long long> > dp(n + 1, vector<long long>(s + 1,0)); 
    dp[0][0] = 1;
    for(int i = 1; i <= n; i++) {
        for(int j = 0; j <= s; j++) {
            for(int t = 0; t * (n - i + 1) <= j; t++) {
                dp[i][j] += dp[i - 1][j - (n - i + 1) * t];
                dp[i][j] %= MOD;
            }
        }
    }
    cout << dp[n][s] << "\n";
    return 0;
}
0