結果

問題 No.269 見栄っ張りの募金活動
ユーザー asumo0729asumo0729
提出日時 2021-04-22 21:25:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,008 KB
最終ジャッジ日時 2024-07-04 06:34:20
合計ジャッジ時間 2,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,528 KB
testcase_01 AC 40 ms
52,948 KB
testcase_02 AC 38 ms
52,792 KB
testcase_03 AC 48 ms
62,264 KB
testcase_04 AC 57 ms
67,512 KB
testcase_05 AC 41 ms
60,016 KB
testcase_06 AC 37 ms
52,452 KB
testcase_07 AC 79 ms
77,008 KB
testcase_08 AC 36 ms
53,548 KB
testcase_09 AC 38 ms
52,656 KB
testcase_10 AC 39 ms
53,324 KB
testcase_11 AC 46 ms
61,700 KB
testcase_12 AC 39 ms
52,516 KB
testcase_13 AC 48 ms
64,124 KB
testcase_14 AC 45 ms
60,868 KB
testcase_15 AC 48 ms
61,596 KB
testcase_16 AC 36 ms
53,076 KB
testcase_17 AC 37 ms
53,196 KB
testcase_18 AC 57 ms
67,404 KB
testcase_19 AC 49 ms
62,276 KB
testcase_20 AC 44 ms
60,044 KB
testcase_21 AC 44 ms
60,800 KB
testcase_22 AC 46 ms
61,912 KB
testcase_23 AC 41 ms
60,080 KB
testcase_24 AC 45 ms
60,244 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 - i) >= 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