結果

問題 No.1011 Infinite Stairs
ユーザー いたいた
提出日時 2025-01-07 22:35:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 294,796 KB
最終ジャッジ日時 2025-01-07 22:36:32
合計ジャッジ時間 45,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,484 KB
testcase_01 AC 42 ms
267,924 KB
testcase_02 AC 105 ms
89,240 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 42 ms
59,768 KB
testcase_07 AC 289 ms
257,280 KB
testcase_08 AC 44 ms
59,180 KB
testcase_09 AC 52 ms
182,516 KB
testcase_10 AC 274 ms
80,528 KB
testcase_11 TLE -
testcase_12 AC 120 ms
75,576 KB
testcase_13 TLE -
testcase_14 AC 68 ms
73,468 KB
testcase_15 AC 1,555 ms
112,268 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 79 ms
71,568 KB
testcase_20 AC 154 ms
74,924 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,957 ms
228,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D,K=map(int,input().split())
now=N*D+1


dp=[[0]*(N*D+1) for _ in range(N+1)]
d=10**9+7
dp[0][0]=1
for i in range(N):
  for j in range(i,K-(N-i-1)):
    if dp[i][j]:
      for next in range(1,D+1):
        if next>K:
          continue
        dp[i+1][next+j]+=dp[i][j]
        dp[i+1][next+j]%=d
print(dp[-1][K])
0