結果

問題 No.269 見栄っ張りの募金活動
ユーザー ryuhei1230ryuhei1230
提出日時 2019-08-11 15:39:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 313 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 59,668 KB
最終ジャッジ日時 2024-09-13 20:07:00
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,756 KB
testcase_01 AC 37 ms
52,216 KB
testcase_02 AC 37 ms
52,612 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
51,816 KB
testcase_07 WA -
testcase_08 AC 38 ms
53,368 KB
testcase_09 AC 38 ms
53,948 KB
testcase_10 AC 37 ms
52,204 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,352 KB
testcase_13 WA -
testcase_14 AC 41 ms
58,348 KB
testcase_15 WA -
testcase_16 AC 37 ms
52,272 KB
testcase_17 AC 38 ms
52,892 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
58,588 KB
testcase_21 AC 41 ms
59,360 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
58,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, k = map(int, input().split())
mod = 10 **9 +7


def div_num(n, k):
    dp = (n+1) * [1]
    for i in range(2, k+1):
        for j in range(i, n+1):
            dp[j] = dp[j] + dp[j - i] % mod
    return dp[-1]


if s - n *((n-1) * k) //2 < 0:
     print(0)
else:
    print(div_num(s - n *(n-1) * k // 2, n))
0