結果

問題 No.269 見栄っ張りの募金活動
ユーザー ayaoniayaoni
提出日時 2020-10-09 17:36:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-07-20 06:52:56
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 51 ms
60,928 KB
testcase_04 AC 64 ms
66,304 KB
testcase_05 AC 46 ms
58,368 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 88 ms
76,288 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 46 ms
60,928 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 50 ms
61,952 KB
testcase_14 AC 46 ms
59,904 KB
testcase_15 AC 48 ms
61,440 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 62 ms
65,792 KB
testcase_19 AC 51 ms
61,696 KB
testcase_20 AC 46 ms
59,904 KB
testcase_21 AC 46 ms
60,288 KB
testcase_22 AC 47 ms
61,056 KB
testcase_23 AC 42 ms
58,752 KB
testcase_24 AC 46 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


N,S,K = MI()
mod = 10**9+7

S -= K*(N*(N-1)//2)
if S < 0:
    print(0)
else:
    dp = [[0]*(S+1) for _ in range(N+1)]  # dp[i][j] = jをi個に分割する方法
    dp[0][0] = 1
    for i in range(1,N+1):
        for j in range(S+1):
            dp[i][j] = dp[i-1][j]
            if j >= i:
                dp[i][j] += dp[i][j-i]
            dp[i][j] %= mod
    print(dp[N][S])
0