結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー minimumminimum
提出日時 2021-05-28 22:21:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 388 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-11-07 09:49:38
合計ジャッジ時間 11,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 319 ms
76,032 KB
testcase_02 AC 527 ms
76,160 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 TLE -
testcase_06 AC 304 ms
76,160 KB
testcase_07 TLE -
testcase_08 AC 759 ms
76,416 KB
testcase_09 AC 1,062 ms
76,264 KB
testcase_10 AC 154 ms
76,672 KB
testcase_11 TLE -
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 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n,k,l = map(int,input().split())
mod = 10**9 + 7
dp1 = [0]*(2*n+1)
dp1[0] += 1

for _ in range(k):
    dp2 = [0]*(2*n+1)
    for i in range(n):
        dp2[i+1] += (dp1[i] % mod)
        dp2[i+l+1] -= (dp1[i] % mod)
    dp1 = list(accumulate(dp2))
    for i in range(n):
        dp1[i] = (dp1[i] + dp1[i+n])%mod

for i in range(n):
    print((dp1[i])%mod)
0