結果

問題 No.269 見栄っ張りの募金活動
ユーザー mkawa2mkawa2
提出日時 2020-02-05 00:32:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,469 ms / 5,000 ms
コード長 488 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 330,448 KB
最終ジャッジ日時 2024-09-21 07:53:00
合計ジャッジ時間 8,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 92 ms
19,160 KB
testcase_04 AC 1,213 ms
114,524 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 3,469 ms
330,448 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 222 ms
31,728 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 339 ms
47,652 KB
testcase_14 AC 38 ms
12,672 KB
testcase_15 AC 315 ms
47,940 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 1,070 ms
111,308 KB
testcase_19 AC 314 ms
47,444 KB
testcase_20 AC 63 ms
15,564 KB
testcase_21 AC 54 ms
15,280 KB
testcase_22 AC 207 ms
30,564 KB
testcase_23 AC 44 ms
12,688 KB
testcase_24 AC 90 ms
20,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
def MI(): return map(int, sys.stdin.readline().split())

md = 10 ** 9 + 7
def main():
    # n人でx円払う方法
    memo = {}

    def p(n, x):
        if x<0:return 0
        if n == 1: return 1
        if (n, x) in memo: return memo[n, x]
        res = p(n - 1, x)
        if x - n >= 0: res += p(n, x - n)
        res %= md
        memo[n, x] = res
        return res

    n, s, k = MI()
    print(p(n, s - k * n * (n - 1) // 2))

main()
0