結果

問題 No.269 見栄っ張りの募金活動
ユーザー simansiman
提出日時 2020-10-22 19:58:04
言語 Ruby
(3.3.0)
結果
AC  
実行時間 747 ms / 5,000 ms
コード長 367 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-07-21 09:28:53
合計ジャッジ時間 6,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 120 ms
12,928 KB
testcase_04 AC 314 ms
18,176 KB
testcase_05 AC 76 ms
12,032 KB
testcase_06 AC 75 ms
12,288 KB
testcase_07 AC 747 ms
27,776 KB
testcase_08 AC 75 ms
12,032 KB
testcase_09 AC 371 ms
18,688 KB
testcase_10 AC 76 ms
12,032 KB
testcase_11 AC 136 ms
13,568 KB
testcase_12 AC 305 ms
17,280 KB
testcase_13 AC 153 ms
13,696 KB
testcase_14 AC 86 ms
12,288 KB
testcase_15 AC 145 ms
13,568 KB
testcase_16 AC 261 ms
16,768 KB
testcase_17 AC 115 ms
12,672 KB
testcase_18 AC 458 ms
21,888 KB
testcase_19 AC 172 ms
14,336 KB
testcase_20 AC 86 ms
12,160 KB
testcase_21 AC 86 ms
12,416 KB
testcase_22 AC 116 ms
12,928 KB
testcase_23 AC 88 ms
12,288 KB
testcase_24 AC 94 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, S, K = gets.split.map(&:to_i)
MOD = 10 ** 9 + 7

dp = Array.new(N + 1) { Array.new(S + 1, 0) }

0.step(S, N) do |s|
  dp[0][s] = 1
end

1.upto(N - 1) do |i|
  0.upto(S) do |s|
    m = N - i

    if s >= K * m
      dp[i][s] += dp[i - 1][s - K * m]
    end

    if s - m >= 0
      dp[i][s] += dp[i][s - m]
    end

    dp[i][s] %= MOD
  end
end

puts dp[N - 1][S]
0