結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | takeya_okino |
提出日時 | 2017-07-04 21:06:42 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 696 bytes |
コンパイル時間 | 2,108 ms |
コンパイル使用メモリ | 76,880 KB |
実行使用メモリ | 57,572 KB |
最終ジャッジ日時 | 2024-10-05 16:03:14 |
合計ジャッジ時間 | 6,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,632 KB |
testcase_01 | WA | - |
testcase_02 | AC | 132 ms
41,776 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 128 ms
41,200 KB |
testcase_06 | AC | 128 ms
41,672 KB |
testcase_07 | AC | 201 ms
57,572 KB |
testcase_08 | WA | - |
testcase_09 | AC | 166 ms
51,992 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 164 ms
47,904 KB |
testcase_13 | WA | - |
testcase_14 | AC | 132 ms
41,792 KB |
testcase_15 | WA | - |
testcase_16 | AC | 161 ms
47,844 KB |
testcase_17 | AC | 143 ms
42,364 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { long MOD = (long)Math.pow(10, 9) + 7; Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int S = sc.nextInt(); int K = sc.nextInt(); // dp[i][j]はi人募金した時点で確定金額がj円となる場合の数 long[][] dp = new long[N + 1][S + 1]; dp[0][0] = 1; for(int i = 1; i < N + 1; i++) { for(int j = 0; j < S + 1; j++) { if(j >= K * (N - i + 1)) dp[i][j] = (dp[i][j] + dp[i - 1][j - K * (N - i + 1)]) % MOD; if(j >= (N - i + 1)) dp[i][j] = (dp[i][j] + dp[i][j - (N - i + 1)]) % MOD; } } System.out.println(dp[N][S]); } }