結果

問題 No.269 見栄っ張りの募金活動
ユーザー asumo0729asumo0729
提出日時 2021-04-22 21:23:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 612 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-04 06:34:14
合計ジャッジ時間 2,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 54 ms
61,312 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 43 ms
58,496 KB
testcase_06 RE -
testcase_07 AC 92 ms
76,544 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
52,608 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 46 ms
61,184 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 47 ms
62,720 KB
testcase_14 AC 43 ms
60,032 KB
testcase_15 AC 46 ms
61,568 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 AC 36 ms
51,712 KB
testcase_18 AC 55 ms
66,176 KB
testcase_19 AC 49 ms
62,080 KB
testcase_20 AC 43 ms
60,032 KB
testcase_21 AC 44 ms
59,904 KB
testcase_22 AC 49 ms
61,184 KB
testcase_23 AC 45 ms
59,136 KB
testcase_24 AC 47 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')

N, S, K = lp()
rest = (N - 1) * N //2 * K
S -= rest

mod = 10 ** 9 + 7

ans = 0

dp = [[ 0 for _ in range(S + 1)] for _ in range(N + 1)]
if S < 0:
    print(0)
    sys.exit()
dp[0][0] = 1
for i in range(1,N + 1):
    for j in range(0, S + 1):
        if (j - 1) >= 0:
            dp[i][j] = (dp[i - 1][j] + dp[i][j - i])%mod
        else:
            dp[i][j] = dp[i - 1][j]

print(dp[N][S])
0