結果

問題 No.269 見栄っ張りの募金活動
ユーザー recososo
提出日時 2020-03-01 16:41:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,491 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 1,500 ms
コンパイル使用メモリ 168,944 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 20:43:58
合計ジャッジ時間 7,435 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=1e9+7;
int main(){
    int n,s,k;cin >> n >> s >> k;
    s-=k*n*(n-1)/2;
    if(s<0){
        cout << 0 << endl;
        return 0;
    }
    vector<int> dp(s+1);
    dp[0]=1;
    for(int i=0;i<n;i++){
        for(int j=s;j>=0;j--){
            for(int l=1;l*(n-i)+j<=s;l++){
                dp[j+l*(n-i)]+=dp[j];
                dp[j+l*(n-i)]%=mod;
            }
        }
    }
    cout << dp[s] << endl;
}
0