結果

問題 No.269 見栄っ張りの募金活動
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-04 21:35:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 5,000 ms
コード長 760 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 67,160 KB
最終ジャッジ日時 2024-07-16 01:59:08
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,404 KB
testcase_01 AC 134 ms
54,260 KB
testcase_02 AC 138 ms
53,900 KB
testcase_03 AC 151 ms
54,120 KB
testcase_04 AC 170 ms
58,948 KB
testcase_05 AC 136 ms
54,096 KB
testcase_06 AC 134 ms
54,112 KB
testcase_07 AC 216 ms
67,160 KB
testcase_08 AC 133 ms
54,220 KB
testcase_09 AC 174 ms
62,956 KB
testcase_10 AC 134 ms
54,048 KB
testcase_11 AC 155 ms
56,308 KB
testcase_12 AC 169 ms
58,960 KB
testcase_13 AC 152 ms
56,256 KB
testcase_14 AC 139 ms
54,120 KB
testcase_15 AC 152 ms
56,244 KB
testcase_16 AC 167 ms
58,608 KB
testcase_17 AC 149 ms
54,224 KB
testcase_18 AC 183 ms
62,752 KB
testcase_19 AC 154 ms
56,048 KB
testcase_20 AC 139 ms
54,496 KB
testcase_21 AC 140 ms
54,240 KB
testcase_22 AC 149 ms
54,160 KB
testcase_23 AC 135 ms
53,996 KB
testcase_24 AC 142 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 <= S; i++) {
      if(N * i < S + 1) dp[1][N * i] = 1;
    }
    for(int i = 2; 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]);
  }
}
0