結果

問題 No.269 見栄っ張りの募金活動
ユーザー I TI T
提出日時 2024-08-14 14:37:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,639 bytes
コンパイル時間 3,045 ms
コンパイル使用メモリ 249,660 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-08-14 14:37:11
合計ジャッジ時間 4,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 11 ms
10,240 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 9 ms
8,576 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 9 ms
8,320 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define Rrep(i,n) for(int i=n-1;i>=0;i--)
#define Rrep1(i,n) for(int i=n;i>0;i--)
#define all(a) a.begin(),a.end()
using ll = long long;
using ull = unsigned long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using vl = vector<ll>;
using vvl = vector<vl>;
using vvvl = vector<vvl>;
#define INF ((ll)2e15)
#define IINF ((int)1e9)
const double PI = 3.1415926535897932384626433832795028841971;
template<typename T>inline bool chmax(T& a, T b) { return ((a < b) ? (a = b, true) : (false)); }
template<typename T>inline bool chmin(T& a, T b) { return ((a > b) ? (a = b, true) : (false)); }
#define yesno(ans) cout<<((ans)?"Yes\n":"No\n")
bool eq(double a, double b) { return abs(a - b) < 0.0000001; }
const int di[4] = { 1,0,-1,0 };
const int dj[4] = { 0,-1,0,1 };

/*ACL
#include <atcoder/all>
using namespace atcoder;
//using mint = modint998244353;
using mint=modint1000000007;
using vm=vector<mint>;
using vvm=vector<vm>;
using vvvm=vector<vvm>;
//*/


int solve() {
    //分割数
    ll N,S,K;cin>>N>>S>>K;
    vvl dp(N+1,vl(S+1,0));
    dp[0][0]=1;
    //rep1(i,S)dp[0][i]=1;
    rep1(i,N)rep(j,S+1){
        
        if(j-K*(N-i)>=0)
        dp[i][j]+=(dp[i-1][j-K*(N-i)])%1000000007;
        if(j-(N-i)>=0)
        dp[i][j]+=dp[i][j-(N-i)]%1000000007;
        dp[i][j]%=1000000007;
    }
    cout<<dp[N][S]<<endl;
    return 0;
}
int main()
{
    std::cin.tie(0)->sync_with_stdio(0);
    int T = 1;
    //cin>>T;
    while (T--)
    {
        solve();
    }
    return 0;
}

0