結果

問題 No.269 見栄っ張りの募金活動
ユーザー 4batakosan4batakosan
提出日時 2019-06-22 11:55:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 870 bytes
コンパイル時間 944 ms
コンパイル使用メモリ 99,976 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-06-07 22:34:05
合計ジャッジ時間 1,655 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 9 ms
9,600 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 9 ms
10,368 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 9 ms
8,704 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 7 ms
8,320 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 13 ms
13,312 KB
testcase_19 AC 4 ms
5,888 KB
testcase_20 AC 2 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 <fstream>
#include <set>
#include <map>
#include <queue>
#include <vector>
#include <algorithm>
#include <cmath>
#include <chrono>

#define MOD (int64_t)(1e+9 + 7)

using namespace std;

int main(int argc, const char * argv[]) {
    
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    int n, s, k; cin >> n >> s >> k;
    
    vector<vector<int64_t>> dp(n + 1, vector<int64_t>(s + 1, 0));
    
    dp[0][0] = 1;
    
    for (int i = 0; i < n; i++) {
        for (int j = 0; j <= s; j++) {
            if (j >= k * i) {
                dp[i + 1][j] += dp[i][j - k * i];
                dp[i + 1][j] %= MOD;
            }
            if (j >= i + 1) {
                dp[i + 1][j] += dp[i + 1][j - i - 1];
                dp[i + 1][j] %= MOD;
            }
        }
    }
    
    cout << dp[n][s] % MOD << endl;
    
    return 0;
}
0