結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | takeya_okino |
提出日時 | 2017-07-04 21:13:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 764 bytes |
コンパイル時間 | 2,377 ms |
コンパイル使用メモリ | 77,016 KB |
実行使用メモリ | 67,292 KB |
最終ジャッジ日時 | 2024-10-05 16:04:58 |
合計ジャッジ時間 | 6,618 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,152 KB |
testcase_01 | WA | - |
testcase_02 | AC | 132 ms
41,316 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 130 ms
40,984 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 175 ms
52,024 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 165 ms
47,784 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 165 ms
47,724 KB |
testcase_17 | AC | 145 ms
42,264 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++) { if(N * i < S + 1) 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]); } }