結果

問題 No.269 見栄っ張りの募金活動
ユーザー しらっ亭しらっ亭
提出日時 2015-08-22 18:00:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-07-18 12:48:37
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
11,264 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 82 ms
21,120 KB
testcase_04 AC 232 ms
37,760 KB
testcase_05 AC 36 ms
12,416 KB
testcase_06 AC 115 ms
26,880 KB
testcase_07 AC 572 ms
86,784 KB
testcase_08 AC 31 ms
11,776 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 66 ms
16,512 KB
testcase_12 AC 24 ms
10,752 KB
testcase_13 AC 95 ms
21,504 KB
testcase_14 AC 33 ms
11,904 KB
testcase_15 AC 83 ms
19,840 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 24 ms
10,624 KB
testcase_18 AC 237 ms
42,368 KB
testcase_19 AC 99 ms
21,888 KB
testcase_20 AC 38 ms
12,800 KB
testcase_21 AC 36 ms
12,416 KB
testcase_22 AC 73 ms
18,560 KB
testcase_23 AC 43 ms
14,592 KB
testcase_24 AC 42 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    MOD = 10 ** 9 + 7

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

    if S <= 0:
        print(0)
        return

    dp = [[0 for s in range(20101)] for i in range(N + 1)]
    dp[0][0] = 1

    for i in range(1, N + 1):
        for j in range(S + 1):
            dp[i][j] = dp[i - 1][j] + dp[i][j - (N - i + 1)]
            if dp[i][j] > MOD:
                dp[i][j] -= MOD

    print(dp[N][S])


if __name__ == '__main__':
    solve()
0