結果

問題 No.269 見栄っ張りの募金活動
ユーザー NeccoliniNeccolini
提出日時 2020-04-28 00:46:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,409 bytes
コンパイル時間 1,220 ms
コンパイル使用メモリ 90,596 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-05-02 06:17:06
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 RE -
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 13 ms
18,172 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 14 ms
19,200 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 RE -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 14 ms
15,616 KB
testcase_12 RE -
testcase_13 AC 8 ms
10,368 KB
testcase_14 AC 18 ms
19,072 KB
testcase_15 AC 11 ms
12,032 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 8 ms
10,952 KB
testcase_19 AC 6 ms
8,052 KB
testcase_20 AC 4 ms
8,704 KB
testcase_21 AC 13 ms
16,640 KB
testcase_22 AC 7 ms
7,552 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 7 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstring>
#include <cstdio>
#include<utility>
#include<algorithm>
#include<vector>
#include<cmath>
#include<map>
#include<bitset>
#include<queue>
#include<stack>
#include<set>
#include <limits>
#include <climits>
#include <numeric>
#include <cassert>
#include <algorithm>
#include <functional>
using namespace std;
typedef long long ll;
typedef vector<int>VI;
typedef pair<int,int>P;
typedef pair<double,double>P_D;
//const int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};
#define PI 3.1415926535897932384626433832795
#define rep(i, n) for (ll i = 0; i < (ll)n; i++)
#define reprev(i, n) for (ll i = (ll)n - 1; i >= 0; i--)
#define ALL(a)  (a).begin(),(a).end()
#define C_MAX(a, b) ((a)>(b)?(a):(b))
#define fi first
#define se second
#define MAX 100100//5
#define MAX_N 200100
#define MAX_B 1001001//6
#define MAX_S 10010010//7
#define SENTINEL 2000000000//9
#define NIL -1
#define MOD 1000000007
#define INF 1 << 29
#define INFTY 1000000000000000000LL
#define MAX_INT INT_MAX
ll dp[20001][101];//dp[i][j]:=i個のj分割
int main(){
    ll n,s,k;cin>>n>>s>>k;
    ll sub=0;
    for(int i=0;i<n;i++){
        sub+=i*k;
    }
    s-=sub;
    dp[0][0]=1;
    for(int i=0;i<=s;i++)
        for(int j=1;j<=n;j++){
            if(i-j>=0)dp[i][j]=(dp[i-j][j]+dp[i][j-1])%MOD;
            else dp[i][j]=dp[i][j-1]%MOD;
        }
        ll ans=dp[s][n];
        cout<<ans<<endl;
}
0