結果

問題 No.269 見栄っ張りの募金活動
ユーザー neko0774neko0774
提出日時 2023-02-17 18:46:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,925 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 359,428 KB
最終ジャッジ日時 2024-07-19 10:44:14
合計ジャッジ時間 5,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,200 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 104 ms
85,760 KB
testcase_04 AC 587 ms
170,928 KB
testcase_05 AC 51 ms
61,568 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 1,925 ms
359,428 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 37 ms
51,328 KB
testcase_11 AC 140 ms
100,992 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 190 ms
112,836 KB
testcase_14 AC 69 ms
73,856 KB
testcase_15 AC 176 ms
109,188 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 576 ms
169,528 KB
testcase_19 AC 174 ms
109,196 KB
testcase_20 AC 70 ms
75,648 KB
testcase_21 AC 80 ms
79,872 KB
testcase_22 AC 131 ms
98,432 KB
testcase_23 AC 58 ms
66,304 KB
testcase_24 AC 91 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
N, S, K = map(int, input().split())

for n in range(N):
    S -= n*K

P = dict()
for n in range(S+1):
    for k in range(1, N+1):
        if n==0 or k==1:
            P[(n, k)] = 1
        elif n<k: 
            P[(n, k)] = P[(n, n)]
        else:
            P[(n, k)] = P[(n, k-1)]+P[(n-k, k)]
        P[(n, k)] %= mod

print(0 if S<0 else P[(S, N)])
0