結果

問題 No.269 見栄っ張りの募金活動
ユーザー norikamenorikame
提出日時 2020-08-17 07:07:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 1,448 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 171,368 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-10-11 10:49:25
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

const long long mod = 1e9 + 7;

using ll = long long;
using pii  = pair<int, int>;
using pll = pair<ll, ll>;
#define ull unsigned long long
#define ld long double
#define vi vector<int>
#define vll vector<ll>
#define vc vector<char>
#define vs vector<string>
#define vpii vector<pii>
#define vpll vector<pll>

#define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; i++)
#define rep1(i, n) for (int i = 1, i##_len = (n); i <= i##_len; i++)
#define repr(i, n) for (int i = ((int)(n)-1); i >= 0; i--)
#define rep1r(i, n) for (int i = ((int)(n)); i >= 1; i--)

#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()

#define SORT(v, n) sort(v, v + n);
#define VSORT(v) sort(v.begin(), v.end());
#define RSORT(x) sort(rall(x));
#define pb push_back
#define mp make_pair

#define INF (1e18)
#define PI (acos(-1))
#define EPS (1e-7)

ull gcd(ull a, ull b) { return b ? gcd(b, a % b) : a; }
ull lcm(ull a, ull b) { return a / gcd(a, b) * b; }

int main(){
    int n, s, k;
    cin >> n >> s >> k;
    vector<vll> dp(n+1, vll(s+1));
    dp[1][0] = 1;
    rep1(i, n) rep(j, s+1) {
        if (j-(n-i+1) >= 0) dp[i][j] = (dp[i][j] + dp[i][j-(n-i+1)]) % mod;
        if (i-1>=0&&j-k*(n-i+1)>=0) dp[i][j] = (dp[i][j] + dp[i-1][j-k*(n-i+1)]) % mod;
    }
    cout << dp[n][s] << endl;
    return 0;
}
0