結果

問題 No.269 見栄っ張りの募金活動
ユーザー ntudantuda
提出日時 2024-10-23 23:39:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 381 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 105,584 KB
最終ジャッジ日時 2024-10-23 23:39:34
合計ジャッジ時間 8,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,048 KB
testcase_01 AC 45 ms
55,356 KB
testcase_02 AC 46 ms
56,120 KB
testcase_03 AC 1,030 ms
105,584 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize=2000000)
def f(x, y):
    if x == 0:
        return 1
    if y == 1:
        return 1
    ret = 0
    for i in range(x // y + 1):
        ret += f(x - i * y, y - 1)
        ret %= MOD
    return ret

MOD = 10 ** 9 + 7
N, S, K = map(int, input().split())
S -= K * (N - 1) * N // 2
if S < 0:
    print(0)
    exit()

print(f(S, N))
0