結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | Kmcode1 |
提出日時 | 2015-08-21 22:58:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 1,115 bytes |
コンパイル時間 | 748 ms |
コンパイル使用メモリ | 91,380 KB |
実行使用メモリ | 20,416 KB |
最終ジャッジ日時 | 2024-07-16 01:27:24 |
合計ジャッジ時間 | 1,559 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 4 ms
14,104 KB |
testcase_04 | AC | 10 ms
11,964 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 5 ms
20,364 KB |
testcase_07 | AC | 27 ms
20,416 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,948 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 5 ms
9,872 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 4 ms
7,660 KB |
testcase_16 | AC | 1 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 11 ms
16,336 KB |
testcase_19 | AC | 4 ms
9,888 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 3 ms
7,884 KB |
testcase_22 | AC | 4 ms
9,880 KB |
testcase_23 | AC | 2 ms
7,920 KB |
testcase_24 | AC | 2 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%d%d%d", &n, &s, &k); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> using namespace std; int n; int s; int k; long long int dp[102][20002]; long long int mod[102][20002]; #define MOD 1000000007 int main(){ scanf("%d%d%d", &n, &s, &k); long long int N = n; long long int K = k; long long int kkk = (long long int)(K + N*K-K) *(long long int)(n-1) / 2LL; if (kkk > (long long int)(s)){ puts("0"); return 0; } s -= kkk; for (int i = 0; i <= s; i++){ if (i*n > s){ break; } dp[0][i*n] = 1; } for (int i = 0; i+1 < n; i++){ long long int rest = n - i - 1; for (int j = 0; j <= s; j++){ mod[i][j%rest] += dp[i][j]; mod[i][j%rest] %= MOD; dp[i + 1][j] = mod[i][j%rest]; } } printf("%lld\n", dp[n - 1][s]); return 0; }