結果

問題 No.269 見栄っ張りの募金活動
ユーザー tonyu0tonyu0
提出日時 2021-01-28 16:11:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 435 bytes
コンパイル時間 1,072 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 78,428 KB
最終ジャッジ日時 2024-06-26 00:19:17
合計ジャッジ時間 2,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,408 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 38 ms
52,120 KB
testcase_03 AC 49 ms
62,404 KB
testcase_04 AC 69 ms
66,836 KB
testcase_05 AC 44 ms
59,824 KB
testcase_06 AC 39 ms
52,568 KB
testcase_07 AC 108 ms
78,428 KB
testcase_08 AC 38 ms
52,880 KB
testcase_09 AC 38 ms
53,628 KB
testcase_10 AC 39 ms
53,020 KB
testcase_11 AC 50 ms
62,132 KB
testcase_12 AC 38 ms
53,068 KB
testcase_13 AC 54 ms
62,824 KB
testcase_14 AC 47 ms
59,940 KB
testcase_15 AC 51 ms
63,200 KB
testcase_16 AC 39 ms
52,800 KB
testcase_17 AC 38 ms
53,084 KB
testcase_18 AC 68 ms
67,404 KB
testcase_19 AC 54 ms
63,116 KB
testcase_20 AC 48 ms
61,640 KB
testcase_21 AC 47 ms
59,996 KB
testcase_22 AC 52 ms
62,224 KB
testcase_23 AC 46 ms
59,972 KB
testcase_24 AC 49 ms
60,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, k = map(int, input().split())
# 0 + k * (n - 1)
# k * n * (n - 1) // 2
s -= k * n * (n - 1) // 2
if s < 0:
    print(0)
    exit()
mod = 10 ** 9 + 7
dp = [[0] * (s + 1) for _ in range(n + 1)]
dp[0][0] = 1
for i in range(1, n + 1):
    for j in range(s + 1):
        dp[i][j] = dp[i - 1][j]
        if j - i >= 0:
            dp[i][j] += dp[i][j - i]
            if dp[i][j] >= mod:
                dp[i][j] -= mod
print(dp[n][s])
0