結果
問題 | No.269 見栄っ張りの募金活動 |
ユーザー | takakin |
提出日時 | 2020-05-11 21:33:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 425 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 72,832 KB |
最終ジャッジ日時 | 2024-07-19 05:46:57 |
合計ジャッジ時間 | 7,005 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,120 KB |
testcase_01 | AC | 45 ms
53,120 KB |
testcase_02 | AC | 42 ms
53,120 KB |
testcase_03 | AC | 77 ms
62,336 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 | -- | - |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n,s,k=map(int,input().split()) mod=10**9+7 import copy s-=n*(n-1)//2*k if s<0: print(0) else: DP=[[0]*(s+1) for _ in range(n+1)] for i in range(s+1): DP[1][i]=1 for i in range(2,n+1): for j in range(s+1): ct=0 while j-ct*i>=0: DP[i][j]+=DP[i-1][j-ct*i] if DP[i][j]>mod: DP[i][j]%=mod ct+=1 print(DP[n][s])