結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー marroncastlemarroncastle
提出日時 2021-05-28 21:25:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,401 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-11-07 08:58:54
合計ジャッジ時間 19,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 113 ms
75,648 KB
testcase_02 AC 322 ms
75,984 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 834 ms
75,904 KB
testcase_06 AC 146 ms
75,884 KB
testcase_07 AC 1,063 ms
75,904 KB
testcase_08 AC 349 ms
75,904 KB
testcase_09 AC 512 ms
75,920 KB
testcase_10 AC 114 ms
75,720 KB
testcase_11 AC 1,038 ms
75,904 KB
testcase_12 AC 64 ms
75,384 KB
testcase_13 AC 180 ms
75,892 KB
testcase_14 AC 210 ms
75,772 KB
testcase_15 AC 1,210 ms
75,712 KB
testcase_16 AC 1,243 ms
75,844 KB
testcase_17 AC 1,183 ms
75,904 KB
testcase_18 AC 1,225 ms
75,760 KB
testcase_19 AC 1,301 ms
76,544 KB
testcase_20 AC 1,183 ms
75,648 KB
testcase_21 AC 1,173 ms
75,640 KB
testcase_22 AC 1,401 ms
75,904 KB
testcase_23 AC 1,179 ms
76,032 KB
testcase_24 AC 1,301 ms
75,880 KB
testcase_25 AC 759 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, L = map(int, input().split())
dp = [1] + [0]*(N-1)
MOD = 10**9+7
for _ in range(K):
  new_dp = [0]*N
  cum = sum(dp[:L-1])
  for i in range(L,N):
    cum += dp[i-1]
    cum %= MOD
    new_dp[i] += cum
    new_dp[i] %= MOD
    cum -= dp[i-L]
  for i in range(L):
    cum += dp[i-1]
    cum %= MOD
    new_dp[i] += cum
    new_dp[i] %= MOD
    cum -= dp[i-L]
  dp = new_dp
print(*dp, sep='\n')
0