結果

問題 No.269 見栄っ張りの募金活動
ユーザー Gredt8Gredt8
提出日時 2019-08-14 16:14:40
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 2,012 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 83,836 KB
実行使用メモリ 11,672 KB
最終ジャッジ日時 2023-10-19 18:09:31
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 7 ms
11,672 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 31 ms
11,672 KB
testcase_04 AC 23 ms
11,672 KB
testcase_05 AC 10 ms
11,672 KB
testcase_06 AC 51 ms
11,672 KB
testcase_07 AC 50 ms
11,672 KB
testcase_08 AC 8 ms
11,672 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 10 ms
11,672 KB
testcase_11 AC 10 ms
11,672 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 18 ms
11,672 KB
testcase_14 AC 6 ms
11,672 KB
testcase_15 AC 14 ms
11,672 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 38 ms
11,672 KB
testcase_19 AC 21 ms
11,672 KB
testcase_20 AC 8 ms
11,672 KB
testcase_21 AC 7 ms
11,672 KB
testcase_22 AC 17 ms
11,672 KB
testcase_23 AC 15 ms
11,672 KB
testcase_24 AC 9 ms
11,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#include <vector>
#include <map>
#include <algorithm>
#include <fstream>
#include<cstdio>
#include<iomanip>
#include<stack>
#include<queue>
#include<string>
#include <cstdlib>
#include <typeinfo>

#define REP(i, n) for(int i=0;i<n;i++)
#define REP2(i, s, n) for(int i=s;i<n;i++)
#define REP_1(i, n) for(int i=1;i<n+1;i++)
#define bitSearch(bit, n) for(int bit = 0; bit < (1 << n); bit++)
using namespace std;

template<class T>
void print(const T &value) {
    std::cout << value << std::endl;
}

void yesno(bool a) { if (a)cout << "yes" << endl; else cout << "no" << endl; }

void YesNo(bool a) { if (a)cout << "Yes" << endl; else cout << "No" << endl; }

void YESNO(bool a) { if (a)cout << "YES" << endl; else cout << "NO" << endl; }

typedef long long ll;
typedef unsigned long ul;
typedef long double ld;

template<class T>
inline bool chmin(T &a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmax(T &a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

ll INF = 10000000;
ll mod = 1000000007;//10^9+7
int dx[8] = {-1, 0, 0, 1, -1, -1, 1, 1};
int dy[8] = {0, -1, 1, 0, -1, 1, -1, 1};
using Graph = vector<vector<int>>;//隣接リスト:G[i]にはiと隣接する頂点が入るよ。
using P = pair<int, int>;//BFSで利用。queueに入れる。
using PP = pair<int, P>; //dijkstraで利用,priority_queueに入れる。
using p_queue = priority_queue<int, vector<int>, greater<int>()>;
//struct edge{int to, cost};



//番号ズレ注意!!
int main() {
    int N, S, K;
    cin >> N >> S >> K;
    S -= N * (N - 1) * K / 2;
    if (S < 0) {
        cout << 0 << endl;
        return 0;
    }
    int dp[101][20200];
    REP(i, 101) { REP(j, 20200) { dp[i][j] = 0; }}
    dp[0][0] = 1;
    REP(i, N) {
        REP(j, 20001) {
            dp[i][j + (N - i)] += dp[i][j] %= mod;
            dp[i + 1][j] += dp[i][j] %= mod;
        }
    }
    cout << dp[N][S] << endl;
}

0