結果

問題 No.269 見栄っ張りの募金活動
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-10 22:13:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 539 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 141,824 KB
最終ジャッジ日時 2024-07-16 01:49:46
合計ジャッジ時間 2,245 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 24 ms
8,704 KB
testcase_04 AC 177 ms
44,672 KB
testcase_05 AC 10 ms
6,400 KB
testcase_06 AC 10 ms
6,272 KB
testcase_07 AC 539 ms
141,824 KB
testcase_08 AC 10 ms
6,272 KB
testcase_09 AC 10 ms
6,400 KB
testcase_10 AC 9 ms
6,272 KB
testcase_11 AC 42 ms
11,648 KB
testcase_12 AC 10 ms
6,272 KB
testcase_13 AC 64 ms
16,768 KB
testcase_14 AC 18 ms
7,168 KB
testcase_15 AC 57 ms
15,360 KB
testcase_16 AC 10 ms
6,272 KB
testcase_17 AC 10 ms
6,272 KB
testcase_18 AC 174 ms
45,952 KB
testcase_19 AC 54 ms
15,488 KB
testcase_20 AC 19 ms
7,424 KB
testcase_21 AC 19 ms
7,680 KB
testcase_22 AC 38 ms
12,032 KB
testcase_23 AC 13 ms
6,656 KB
testcase_24 AC 23 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
mod = int(1e9) + 7

def f(n, k):
    dp = [[0 for _ in xrange(n+1)] for _ in xrange(k+1)]
    dp[0][0] = 1
    for i in xrange(1, k+1):
        for j in xrange(n+1):
            if j - i >= 0:
                dp[i][j] = dp[i-1][j] + dp[i][j-i]
            else:
                dp[i][j] = dp[i-1][j]
    return dp[k][n]

n, s, k = map(int, raw_input().split())
x = s - n * (n-1) / 2 * k
print f(x, n) % mod if x >= 0 else 0
0