結果

問題 No.269 見栄っ張りの募金活動
ユーザー alorie10alorie10
提出日時 2019-09-24 14:34:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 63,872 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-09-19 05:07:52
合計ジャッジ時間 2,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 38 ms
19,200 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 71 ms
19,200 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 24 ms
19,072 KB
testcase_12 AC 23 ms
9,600 KB
testcase_13 AC 16 ms
10,880 KB
testcase_14 AC 21 ms
19,072 KB
testcase_15 AC 17 ms
12,800 KB
testcase_16 AC 26 ms
11,392 KB
testcase_17 AC 6 ms
5,504 KB
testcase_18 AC 49 ms
17,024 KB
testcase_19 AC 17 ms
10,624 KB
testcase_20 AC 9 ms
9,600 KB
testcase_21 AC 17 ms
16,640 KB
testcase_22 AC 9 ms
7,808 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 13 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;
ll n,s,k,dp[20001][101],MOD=1e9+7;
int main(void){
    cin>>n>>s>>k;
    dp[0][0]=1;
    for(int j=1;j<=n;j++){
        for(int i=0;i<=s;i++){
            if(i-j>=0){
                dp[i][j]+=(dp[i-j][j]+dp[i][j-1]);
                dp[i][j]%=MOD;
            }
            else dp[i][j]=dp[i][j-1];
        }
    }
    //cout<<s-n*(n-1)/2*k<<n<<dp[s-n*(n-1)/2*k][n]<<endl;
    if(s-n*(n-1)/2*k<0)cout<<0<<endl;
    else cout<<dp[s-n*(n-1)/2*k][n]<<endl;
}
0