結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | 40947068 |
提出日時 | 2024-01-14 15:35:36 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 901 ms / 5,000 ms |
コード長 | 1,302 bytes |
コンパイル時間 | 4,760 ms |
コンパイル使用メモリ | 179,456 KB |
実行使用メモリ | 11,332 KB |
最終ジャッジ日時 | 2024-09-28 02:00:43 |
合計ジャッジ時間 | 8,863 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 650 ms
6,272 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 901 ms
11,332 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 299 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 120 ms
5,376 KB |
testcase_14 | AC | 235 ms
5,376 KB |
testcase_15 | AC | 177 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 180 ms
6,016 KB |
testcase_19 | AC | 62 ms
5,376 KB |
testcase_20 | AC | 45 ms
5,376 KB |
testcase_21 | AC | 201 ms
5,376 KB |
testcase_22 | AC | 43 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 118 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> //#include<atcoder/modint> using namespace std; using namespace atcoder; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<typename T> inline bool chmin(T &a, T b) { return ((a>b) ? (a = b, true) : (false));} #define rep(i,s,n) for(long long i=s;i<(long long)(n);i++) #define rrep(i,s,n) for(long long i=n-1;i>=s;i--) const long long inf = 1LL<<60; typedef long long ll; #define cmp [](pair<ll,ll> a, pair<ll,ll> b){return a.second<b.second;} //pairのsecondでソートsort(p.begin(),p.end(),cmp) typedef pair<long long, long long> P; typedef pair<ll, pair<ll,ll> > PP; #define rll ll,vector<ll>,greater<ll> #define rP P,vector<P>,greater<P> const long double pi = 3.14159265358979; typedef unsigned long long ull; using mint = modint1000000007; int main() { ll n,s,k; cin >> n >> s >> k; ll rest = s - (n-1)*n*k/2; if(rest < 0) { cout << 0 << endl; return 0; } else if(rest == 0) { cout << 1 << endl; return 0; } mint dp[n+1][rest+1]; dp[0][rest] = 1; rep(i,1,n+1) { rep(j,0,rest+1) { for(ll k=j;k>=0;k-=i) { dp[i][k] += dp[i-1][j]; } } } cout << dp[n][0].val() << endl; }