結果

問題 No.269 見栄っ張りの募金活動
ユーザー 藤原正貴藤原正貴
提出日時 2020-04-19 14:56:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,419 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 147,456 KB
最終ジャッジ日時 2024-10-05 10:12:37
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 64 ms
13,568 KB
testcase_04 AC 490 ms
51,456 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 1,419 ms
147,456 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 124 ms
17,664 KB
testcase_12 AC 30 ms
10,496 KB
testcase_13 AC 170 ms
22,272 KB
testcase_14 AC 53 ms
11,648 KB
testcase_15 AC 157 ms
21,248 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 475 ms
51,712 KB
testcase_19 AC 157 ms
20,992 KB
testcase_20 AC 54 ms
12,160 KB
testcase_21 AC 59 ms
12,160 KB
testcase_22 AC 115 ms
17,024 KB
testcase_23 AC 40 ms
11,264 KB
testcase_24 AC 69 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if S==0:
    print(1)
    exit()
if S < 0:
    print(0)
    exit()

dp = [[0]*(S+1) for _ 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]
        if j-i >= 0:
            dp[i][j] += dp[i][j-i]

print(dp[-1][-1]%(10**9+7))
0