結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | f1b_maxbl00d |
提出日時 | 2019-05-08 19:11:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,038 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 81,648 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 00:30:57 |
合計ジャッジ時間 | 1,723 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
void solve(); int main() { solve(); return 0; } ////////////////////////////////////////////////// ////////////////////////////////////////////////// #include <iostream> #include <algorithm> #include <vector> #include <set> #include <queue> #include <functional> #include <map> using namespace std; typedef pair<int, int> pii; //分割数求める //和S以下、n分割、M剰余 //保存用空vector<int>指定 //もうめんどくさいから全部long intで(適当) void divisionNumber(long int S, long int n, long int M,vector<long int>& v) { v.resize(S+1); for (int n = 0; n <= S; n++)v[n] = 0; v[0] = 1; for (int i = 1; i <= n; i++) { //i分割 for (int j = 0; j <= S; j++) { if (j - i >= 0)v[j] += v[j - i]; if (v[j] >= M)v[j] -= M; } } return; } long int N, S, K; long int M; void solve() { cin >> N >> S >> K; M = 1000000000 + 7; vector<long int> v; if (S - (N - 1)*N*K / 2 < 0) { cout << 0 << endl; return; } divisionNumber(S - (N - 1)*N*K / 2, N, M, v); cout << v[N] << endl; return; }