結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,780 KB
testcase_01 WA -
testcase_02 AC 46 ms
55,320 KB
testcase_03 WA -
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
    print(x,y,ret)
    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