結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | tassei903 |
提出日時 | 2022-12-14 09:18:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 82,056 KB |
実行使用メモリ | 85,888 KB |
最終ジャッジ日時 | 2024-11-08 01:21:06 |
合計ジャッジ時間 | 11,932 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
51,584 KB |
testcase_01 | AC | 43 ms
51,712 KB |
testcase_02 | AC | 54 ms
61,184 KB |
testcase_03 | AC | 82 ms
66,176 KB |
testcase_04 | AC | 4,558 ms
79,488 KB |
testcase_05 | AC | 51 ms
59,520 KB |
testcase_06 | AC | 43 ms
51,840 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 for i in range(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 if i else 0, s+1): nj = j + x * (n - i) if nj > s: break dp[nj] += ndp[j] dp[nj] %= mod print(dp[-1])