結果

問題 No.269 見栄っ張りの募金活動
ユーザー hiroahiroa
提出日時 2019-08-09 18:27:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,818 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 167,644 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-07-19 07:40:51
合計ジャッジ時間 12,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,200 KB
testcase_01 AC 7 ms
19,328 KB
testcase_02 AC 6 ms
19,168 KB
testcase_03 AC 16 ms
19,200 KB
testcase_04 AC 2,489 ms
19,100 KB
testcase_05 AC 6 ms
19,072 KB
testcase_06 AC 6 ms
19,072 KB
testcase_07 AC 3,818 ms
19,076 KB
testcase_08 AC 6 ms
19,112 KB
testcase_09 AC 7 ms
19,328 KB
testcase_10 AC 6 ms
19,156 KB
testcase_11 AC 936 ms
19,200 KB
testcase_12 AC 7 ms
19,124 KB
testcase_13 AC 497 ms
19,200 KB
testcase_14 AC 7 ms
19,136 KB
testcase_15 AC 672 ms
19,092 KB
testcase_16 AC 6 ms
19,200 KB
testcase_17 AC 6 ms
19,072 KB
testcase_18 AC 796 ms
19,212 KB
testcase_19 AC 243 ms
19,180 KB
testcase_20 AC 113 ms
19,200 KB
testcase_21 AC 98 ms
19,200 KB
testcase_22 AC 177 ms
19,200 KB
testcase_23 AC 10 ms
19,200 KB
testcase_24 AC 297 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define MOD 1000000007
#define INF 1e9
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

int N,S,K;
ll dp[101][20010];

ll dfs(int n,int y){
    if(y<0) return 0;
    if(n==N-1) return 1;
    ll& ret=dp[n][y];
    if(ret>=0) return ret;
    ret=0;
    for(int i=0;i*(N-n)<=y;i++){
        ret+=dfs(n+1,y-i*(N-n));
    }
    ret%=MOD;
    return ret;
}

int main(void) {
    cin>>N>>S>>K;
    dp[0][0]=1;
    S-=N*(N-1)/2*K;
    memset(dp,-1,sizeof(dp));
    cout<<dfs(0,S)<<endl;
}
0