結果
| 問題 |
No.269 見栄っ張りの募金活動
|
| コンテスト | |
| ユーザー |
yaoshimax
|
| 提出日時 | 2016-05-11 22:34:39 |
| 言語 | Python2 (2.7.18) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 422 bytes |
| コンパイル時間 | 115 ms |
| コンパイル使用メモリ | 6,912 KB |
| 実行使用メモリ | 18,944 KB |
| 最終ジャッジ日時 | 2024-10-05 13:49:19 |
| 合計ジャッジ時間 | 7,449 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 TLE * 1 -- * 20 |
ソースコード
N,S,K=map(int,raw_input().split())
S-=K*N*(N-1)/2
if S < 0:
print 0
exit()
dp=[[-1 for i in range(S+1)] for k in range(N+1)]
mod=1000000007
def rec(N,S):
if dp[N][S]!=-1:
return dp[N][S]
if N==1:
dp[N][S]=1
return dp[N][S]
dp[N][S]=0
for i in range(S/N+1):
dp[N][S]+=rec(N-1,S-i*N)
dp[N][S]%=mod
#print N,S,dp[N][S]
return dp[N][S]
print rec(N,S)
yaoshimax