結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-14 18:31:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 76,424 KB
最終ジャッジ日時 2024-10-05 03:02:54
合計ジャッジ時間 5,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,476 KB
testcase_01 AC 41 ms
60,456 KB
testcase_02 AC 42 ms
62,484 KB
testcase_03 AC 33 ms
52,632 KB
testcase_04 AC 34 ms
52,252 KB
testcase_05 AC 142 ms
74,432 KB
testcase_06 AC 119 ms
72,512 KB
testcase_07 AC 177 ms
76,092 KB
testcase_08 AC 51 ms
63,812 KB
testcase_09 AC 49 ms
62,900 KB
testcase_10 AC 43 ms
61,212 KB
testcase_11 AC 286 ms
76,176 KB
testcase_12 AC 35 ms
53,532 KB
testcase_13 AC 40 ms
60,524 KB
testcase_14 AC 46 ms
61,612 KB
testcase_15 AC 308 ms
76,160 KB
testcase_16 AC 343 ms
76,200 KB
testcase_17 AC 342 ms
76,256 KB
testcase_18 AC 311 ms
76,128 KB
testcase_19 AC 310 ms
76,256 KB
testcase_20 AC 346 ms
76,144 KB
testcase_21 AC 341 ms
76,356 KB
testcase_22 AC 318 ms
76,156 KB
testcase_23 AC 280 ms
76,408 KB
testcase_24 AC 320 ms
76,120 KB
testcase_25 AC 423 ms
76,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ライブラリ: 行列の計算(乗算/累乗)

mod = 10 ** 9 + 7

def mat_mul(a, b):
    n = len(a)
    res = [[0] * n for i in range(n)]
    for i in range(n):
        for k in range(n):
            for j in range(n):
                res[i][j] += a[i][k] * b[k][j]
                res[i][j] %= mod
    return res

def mat_pow(a, k):
    if k == 1: return a
    n = len(a)
    res = [[0] * n for i in range(n)]
    for i in range(n):
        res[i][i] = 1
    while k:
        if k & 1:
            res = mat_mul(res, a)
        a = mat_mul(a, a)
        k >>= 1
    return res

#入力
n, k, l = map(int, input().split())

#隣接行列の構築
G = [[0] * n for i in range(n)]
for i in range(n):
    for j in range(1, l + 1):
        G[i][(i + j) % n] = 1

#行列累乗でパスの数を計算
G_ans = mat_pow(G, k)

#各 i について答えを出力
for i in range(n):
    print(G_ans[0][i])
0