結果

問題 No.269 見栄っ張りの募金活動
ユーザー leaf_bleaf_b
提出日時 2019-07-22 19:42:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 999 bytes
コンパイル時間 1,524 ms
コンパイル使用メモリ 166,912 KB
実行使用メモリ 19,056 KB
最終ジャッジ日時 2024-06-23 18:39:15
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define int             long long
#define FOR( i, m, n )  for( int (i) = (m); (i) < (n); (i)++ )
#define REP( i, n )     FOR( i, 0, n )
#define REPR( i, m )    for( int (i) = (m); (i) >= 0; (i)-- )
#define ALL( a )        (a).begin(), (a).end()
#define MP              make_pair

using namespace std;
using P = pair<int, int>;

template<class T>bool chmax( T& a, const T& b ) { if( a < b ) { a = b; return 1; } return 0; }
template<class T>bool chmin( T& a, const T& b ) { if( a > b ) { a = b; return 1; } return 0; }

const int INF = 1e18;
const int MOD = 1e9 + 7;

int dp[101][20001];

signed main(){
    int N, S, K; cin >> N >> S >> K;
    FOR( i, 1, N ){
        S -= i * K;
    }

    dp[0][0] = 1;
    FOR( i, 1, N + 1 ){
        REP( j, S + 1 ){
            if( j - i >= 0 ){
                dp[i][j] = ( dp[i - 1][j] + dp[i][j - i] ) % MOD;
            }else{
                dp[i][j] = dp[i - 1][j];
            }
        }
    }

    cout << dp[N][S] << endl;
}
0