結果

問題 No.269 見栄っ張りの募金活動
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-06-23 00:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 91,708 KB
最終ジャッジ日時 2024-06-30 05:51:02
合計ジャッジ時間 2,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,772 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 36 ms
53,096 KB
testcase_03 AC 48 ms
63,968 KB
testcase_04 AC 61 ms
71,780 KB
testcase_05 AC 42 ms
61,124 KB
testcase_06 AC 36 ms
52,544 KB
testcase_07 AC 101 ms
91,708 KB
testcase_08 AC 37 ms
52,868 KB
testcase_09 AC 35 ms
52,748 KB
testcase_10 AC 38 ms
53,316 KB
testcase_11 AC 50 ms
65,168 KB
testcase_12 AC 36 ms
52,460 KB
testcase_13 AC 48 ms
64,164 KB
testcase_14 AC 47 ms
63,568 KB
testcase_15 AC 50 ms
65,388 KB
testcase_16 AC 35 ms
51,828 KB
testcase_17 AC 37 ms
51,940 KB
testcase_18 AC 60 ms
69,120 KB
testcase_19 AC 50 ms
63,704 KB
testcase_20 AC 46 ms
62,592 KB
testcase_21 AC 46 ms
62,944 KB
testcase_22 AC 47 ms
63,384 KB
testcase_23 AC 45 ms
61,232 KB
testcase_24 AC 47 ms
63,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/269

0,K,2K, ... , (N-1)K
を引いておけばok

"""

import sys
from sys import stdin

N,S,K = map(int,stdin.readline().split())

mod = 10**9+7

S -= (N-1)*K*N //2

if S < 0:
    print (0)
    sys.exit()

P = [[0] * (N+1) for i in range(S+1)]

for i in range(S+1):

    for j in range(N+1):

        if i == j == 0:
            P[i][j] = 1
        elif j == 0:
            P[i][j] = 0
        elif i-j >= 0:
            P[i][j] = P[i][j-1] + P[i-j][j]
        else:
            P[i][j] = P[i][j-1]

        P[i][j] %= mod

print (P[-1][-1])
0