結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | takeya_okino |
提出日時 | 2017-07-04 21:12:17 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 745 bytes |
コンパイル時間 | 2,109 ms |
コンパイル使用メモリ | 77,300 KB |
実行使用メモリ | 57,648 KB |
最終ジャッジ日時 | 2024-10-05 16:04:23 |
合計ジャッジ時間 | 6,480 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | AC | 127 ms
41,540 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 163 ms
47,904 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 163 ms
47,544 KB |
testcase_17 | AC | 144 ms
42,284 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]; for(int i = 0; i < N + 1; i++) { dp[0][N * i] = 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]); } }