結果

問題 No.269 見栄っ張りの募金活動
ユーザー tnoda_tnoda_
提出日時 2015-08-28 16:41:51
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,927 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-07-16 01:48:50
合計ジャッジ時間 8,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,144 KB
testcase_01 AC 11 ms
6,400 KB
testcase_02 AC 27 ms
6,400 KB
testcase_03 AC 137 ms
8,832 KB
testcase_04 AC 710 ms
28,416 KB
testcase_05 AC 12 ms
6,400 KB
testcase_06 AC 10 ms
6,272 KB
testcase_07 AC 1,927 ms
67,840 KB
testcase_08 AC 11 ms
6,144 KB
testcase_09 AC 813 ms
15,744 KB
testcase_10 AC 14 ms
6,400 KB
testcase_11 AC 176 ms
10,880 KB
testcase_12 AC 619 ms
12,160 KB
testcase_13 AC 236 ms
13,184 KB
testcase_14 AC 29 ms
6,944 KB
testcase_15 AC 211 ms
12,416 KB
testcase_16 AC 579 ms
12,928 KB
testcase_17 AC 113 ms
7,296 KB
testcase_18 AC 1,157 ms
35,200 KB
testcase_19 AC 296 ms
13,440 KB
testcase_20 AC 45 ms
7,040 KB
testcase_21 AC 43 ms
7,168 KB
testcase_22 AC 136 ms
9,984 KB
testcase_23 AC 34 ms
6,912 KB
testcase_24 AC 65 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 10**9 + 7
N, S, K = map(int, raw_input().split())
dp = [[0] * (S+1) for i in xrange(N)]
for i in xrange(0, S+1, N):
    dp[0][i] = 1
for i in xrange(1, N):
    for j in xrange(0, S+1):
        if j-K*(N-i) >= 0:
            dp[i][j] += dp[i-1][j-K*(N-i)]
        if j-(N-i) >= 0:
            dp[i][j] += dp[i][j-(N-i)]
        dp[i][j] %= P
print(dp[N-1][S])
0