結果

問題 No.269 見栄っ張りの募金活動
ユーザー ntudantuda
提出日時 2024-10-24 21:18:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 76,060 KB
最終ジャッジ日時 2024-10-24 21:18:08
合計ジャッジ時間 3,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,640 KB
testcase_01 AC 40 ms
53,164 KB
testcase_02 AC 41 ms
52,952 KB
testcase_03 AC 48 ms
60,300 KB
testcase_04 AC 56 ms
71,700 KB
testcase_05 AC 46 ms
59,680 KB
testcase_06 AC 41 ms
53,204 KB
testcase_07 AC 72 ms
76,060 KB
testcase_08 AC 42 ms
52,664 KB
testcase_09 AC 39 ms
53,628 KB
testcase_10 AC 39 ms
53,420 KB
testcase_11 AC 48 ms
62,848 KB
testcase_12 AC 39 ms
52,808 KB
testcase_13 AC 50 ms
63,800 KB
testcase_14 AC 46 ms
61,024 KB
testcase_15 AC 48 ms
63,888 KB
testcase_16 AC 39 ms
53,116 KB
testcase_17 AC 39 ms
53,260 KB
testcase_18 AC 55 ms
71,756 KB
testcase_19 AC 50 ms
63,792 KB
testcase_20 AC 51 ms
60,576 KB
testcase_21 AC 47 ms
61,980 KB
testcase_22 AC 50 ms
62,892 KB
testcase_23 AC 46 ms
58,616 KB
testcase_24 AC 49 ms
60,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N, S, K = map(int, input().split())
S -= K * N * (N - 1) // 2
if S < 0:
    print(0)
    exit()
A = [0] * S + [1]
for i in reversed(range(2, N + 1)):
    for j in reversed(range(i, S + 1)):
        A[j - i] += A[j]
        A[j - 1] %= MOD
print(sum(A) % MOD)
0