結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,484 KB
testcase_02 AC 37 ms
52,696 KB
testcase_03 AC 48 ms
61,608 KB
testcase_04 AC 55 ms
72,428 KB
testcase_05 AC 42 ms
60,368 KB
testcase_06 AC 38 ms
52,992 KB
testcase_07 AC 69 ms
76,280 KB
testcase_08 AC 37 ms
52,992 KB
testcase_09 AC 37 ms
52,756 KB
testcase_10 AC 37 ms
52,472 KB
testcase_11 AC 46 ms
63,192 KB
testcase_12 AC 37 ms
52,756 KB
testcase_13 AC 47 ms
64,148 KB
testcase_14 AC 52 ms
59,696 KB
testcase_15 AC 47 ms
63,812 KB
testcase_16 AC 37 ms
52,692 KB
testcase_17 AC 38 ms
52,696 KB
testcase_18 AC 54 ms
72,072 KB
testcase_19 AC 48 ms
64,732 KB
testcase_20 AC 45 ms
61,184 KB
testcase_21 AC 45 ms
61,068 KB
testcase_22 AC 48 ms
63,320 KB
testcase_23 AC 42 ms
59,636 KB
testcase_24 AC 46 ms
61,800 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(1, S + 1)):
        if j - i >= 0:
            A[j - i] += A[j]
            A[j - 1] %= MOD
print(sum(A) % MOD)
0