結果

問題 No.269 見栄っ張りの募金活動
ユーザー tsutajtsutaj
提出日時 2017-07-04 10:50:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 5,000 ms
コード長 963 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 167,916 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-07-16 01:58:36
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 12 ms
9,344 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 26 ms
19,072 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 13 ms
10,624 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 11 ms
9,088 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 10 ms
8,576 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 17 ms
13,312 KB
testcase_19 AC 6 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 基本テンプレート (縮小版)

#include <bits/stdc++.h>
using namespace std;
#define rep(i,a,n) for(int (i)=(a); (i)<(n); (i)++)
#define repq(i,a,n) for(int (i)=(a); (i)<=(n); (i)++)
#define repr(i,a,n) for(int (i)=(a); (i)>=(n); (i)--)
#define int long long
template<typename T> void chmax(T &a, T b) {a = max(a, b);}
template<typename T> void chmin(T &a, T b) {a = min(a, b);}
template<typename T> void chadd(T &a, T b) {a = a + b;}
typedef pair<int, int> pii;
typedef long long ll;
constexpr ll INF = 1001001001001001LL;
constexpr ll MOD = 1000000007LL;

int N, S, K;
int dp[101][20001];

signed main() {
    dp[1][0] = 1;
    cin >> N >> S >> K;
    rep(i,0,N) repq(j,0,S) {
        if((N-i) * K <= j) (dp[i+1][j] += dp[i][j-(N-i)*K]) %= MOD;
        if(N-i <= j) (dp[i+1][j] += dp[i+1][j-(N-i)]) %= MOD;
        // if(dp[i+1][j] != 0) printf("debug: dp[%lld][%lld] = %lld\n", i+1, j, dp[i+1][j]);
    }
    cout << dp[N][S] << endl;
    return 0;
}
0