結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | rpy3cpp |
提出日時 | 2015-08-21 23:10:57 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 90,224 KB |
最終ジャッジ日時 | 2024-07-18 12:08:37 |
合計ジャッジ時間 | 7,053 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,712 KB |
testcase_01 | AC | 34 ms
51,968 KB |
testcase_02 | AC | 33 ms
51,968 KB |
testcase_03 | AC | 224 ms
80,640 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
def solve(N, S): global dp mod = 10**9 + 7 if S < 0: return 0 if S == 0: return 1 dp = [[-1] * (S + 1) for i in range(N + 1)] for n in range(N + 1): dp[n][0] = 1 for s in range(S + 1): dp[1][s] = 1 return dfs(N, S, mod) def dfs(n, s, mod): global dp if dp[n][s] != -1: return dp[n][s] dp[n][s] = sum(dfs(n-1, ss, mod) for ss in range(s, -1, -n)) % mod return dp[n][s] N, S, K = map(int, input().split()) S -= N * (N-1) * K // 2 print(solve(N, S))