結果

問題 No.269 見栄っ張りの募金活動
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-21 23:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 58,924 KB
最終ジャッジ日時 2024-07-16 01:30:04
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
52,404 KB
testcase_01 AC 47 ms
53,612 KB
testcase_02 AC 49 ms
51,744 KB
testcase_03 AC 55 ms
57,960 KB
testcase_04 AC 66 ms
58,556 KB
testcase_05 AC 54 ms
58,600 KB
testcase_06 AC 50 ms
53,036 KB
testcase_07 AC 87 ms
58,248 KB
testcase_08 AC 49 ms
52,276 KB
testcase_09 AC 48 ms
52,484 KB
testcase_10 AC 47 ms
52,748 KB
testcase_11 AC 60 ms
58,520 KB
testcase_12 AC 47 ms
53,024 KB
testcase_13 AC 56 ms
58,528 KB
testcase_14 AC 53 ms
58,076 KB
testcase_15 AC 55 ms
58,384 KB
testcase_16 AC 48 ms
52,628 KB
testcase_17 AC 47 ms
53,624 KB
testcase_18 AC 62 ms
57,700 KB
testcase_19 AC 54 ms
58,468 KB
testcase_20 AC 54 ms
57,984 KB
testcase_21 AC 54 ms
58,472 KB
testcase_22 AC 53 ms
57,876 KB
testcase_23 AC 51 ms
57,976 KB
testcase_24 AC 54 ms
58,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N, S):
    mod = 10**9 + 7
    if S < 0: return 0
    elif S == 0: return 1
    dp = [1] * (S + 1)
    for n in range(2, N):
        for s in range(n, S + 1):
            dp[s] = (dp[s - n] + dp[s]) % mod
    return sum(dp[S::-N]) % mod    

N, S, K = map(int, input().split())
S -= N * (N-1) * K // 2
print(solve(N, S))
0