結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | tassei903 |
提出日時 | 2022-12-14 09:22:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 85,760 KB |
最終ジャッジ日時 | 2024-11-08 01:30:50 |
合計ジャッジ時間 | 11,716 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,224 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 55 ms
61,952 KB |
testcase_03 | AC | 82 ms
66,688 KB |
testcase_04 | AC | 4,550 ms
79,396 KB |
testcase_05 | AC | 46 ms
59,776 KB |
testcase_06 | AC | 39 ms
52,224 KB |
testcase_07 | TLE | - |
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 | -- | - |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### n,s,k = na() dp = [0] * (s+1) dp[0] = 1 mod = 10**9+7 ndp = [0] * (s+1) dp,ndp = ndp,dp i = 0 for j in range(s+1): if ndp[j] == 0: continue for x in range(0, s+1): nj = j + x * (n - i) if nj > s: break dp[nj] += ndp[j] dp[nj] %= mod for i in range(1,n): ndp = [0] * (s+1) dp,ndp = ndp,dp for j in range(s+1): if ndp[j] == 0: continue for x in range(k, s+1): nj = j + x * (n - i) if nj > s: break dp[nj] += ndp[j] dp[nj] %= mod print(dp[-1])