結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー wolgnikwolgnik
提出日時 2021-05-28 22:32:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 504 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-11-07 09:56:45
合計ジャッジ時間 16,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,216 KB
testcase_01 AC 200 ms
75,776 KB
testcase_02 AC 390 ms
75,904 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 1,894 ms
75,776 KB
testcase_06 AC 326 ms
75,776 KB
testcase_07 TLE -
testcase_08 AC 580 ms
75,904 KB
testcase_09 AC 874 ms
75,904 KB
testcase_10 AC 146 ms
76,032 KB
testcase_11 TLE -
testcase_12 AC 96 ms
75,776 KB
testcase_13 AC 194 ms
75,904 KB
testcase_14 AC 278 ms
75,904 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K, L = map(int, input().split())
mod = 10 ** 9 + 7

dp = [0] * (N)
dp[0] = 1
for _ in range(K):
  imos = [0] * (N + L + 1)
  for i in range(N):
    imos[i + 1] += dp[i]
    imos[i + 1] %= mod
    imos[i + L + 1] -= dp[i]
    imos[i + L + 1] %= mod
  for i in range(N + L):
    imos[i + 1] += imos[i]
    imos[i + 1] %= mod
  for i in range(N + L + 1):
    if i < N: dp[i] = imos[i]
    else:
      dp[i % N] += imos[i]
      dp[i % N] %= mod
for r in dp: print(r)
0