結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | togatoga |
提出日時 | 2015-08-22 08:42:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 1,278 ms |
コンパイル使用メモリ | 158,492 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-18 12:35:11 |
合計ジャッジ時間 | 1,922 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 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 | 9 ms
7,168 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 7 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 7 ms
6,944 KB |
testcase_17 | AC | 3 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 | - |
ソースコード
#include <bits/stdc++.h> #define mp make_pair #define mt make_tuple #define pb push_back #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int,int> pii; typedef pair<long,long> pll; const int INF=1<<29; const double EPS=1e-9; const int MOD = 1000000007; const int dx[]={1,0,-1,0},dy[]={0,-1,0,1}; int N,S,K; int dp[110][20010];//i番目まででS円確定する int main(){ cin >> N >> S >> K; for (int i = 0; i <= S; i+=N){ dp[1][i] = 1; } for (int i = 2; i <= N; i++){ int mult = N + 1 - i; // for (int j = 0; j <= S; j++){ // if (j >= K * mult){ // dp[i][j] += dp[i - 1][j - K * mult]; // dp[i][j] %= MOD; // } // } for (int j = 0; j <= S; j++){ if (j - mult >= 0){ dp[i][j] += dp[i][j - mult]; dp[i][j] %= MOD; } } for (int j = 0; j <= S; j++){ if (j >= K * mult){ dp[i][j] += dp[i - 1][j - K * mult]; dp[i][j] %= MOD; } } } cout << dp[N][S] << endl; return 0; }