結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | Mori |
提出日時 | 2019-11-28 06:14:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,218 bytes |
コンパイル時間 | 1,477 ms |
コンパイル使用メモリ | 162,032 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-17 04:58:41 |
合計ジャッジ時間 | 2,135 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 7 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 6 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | WA | - |
testcase_16 | AC | 6 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <set> #include <cstdio> #include <vector> #include <iostream> #include <utility> #define fir first #define sec second #define get(n) scanf("%d",&n); #define gets(s) string s;cin >> (s); #define All(s) (c).begin(), (c).end() #define chmin(x, y) x = min(x, y); #define chmax(x, y) x = max(x, y); #define rep(i, j) for (int (i)=0;(i)<(j);(i)++) #define repk(i, j, k) for(int (i)=(j);(i)<(k);(i)++) #define dump(x) cout << #x << " = " << (x) << endl; #define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; using namespace std; typedef long long int ll; const ll INF = 10241024; const int MOD = 1e9 + 7; int N,S,K; void input(){ cin >> N >> S >> K; } void solve(){ input(); int s = S - K*N*(N-1)/2; vector<vector<int>> v(N+1, vector<int>(S+1, 0)); v[0][0] = 1; v[1][K] = 1; for(int i=0;i<N;i++){ for(int sum=0;sum + K*(N-(i+1)) <= S && sum + K*(N-i) + N - i <= S ;sum++){ v[i+1][sum + K*(N-(i+1))] += v[i][sum]; v[i][sum + K*(N-i) + N - i] += v[i][sum]; } } int ans = v[N-1][S] % MOD; cout << ans << endl; } int main () { solve(); return 0; }