結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー H3PO4H3PO4
提出日時 2022-08-31 09:29:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,554 ms / 2,000 ms
コード長 827 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,120 KB
最終ジャッジ日時 2024-11-08 01:20:29
合計ジャッジ時間 18,618 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 58 ms
60,160 KB
testcase_02 AC 54 ms
61,056 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 534 ms
79,616 KB
testcase_06 AC 364 ms
78,080 KB
testcase_07 AC 657 ms
80,768 KB
testcase_08 AC 110 ms
75,904 KB
testcase_09 AC 107 ms
75,776 KB
testcase_10 AC 52 ms
60,288 KB
testcase_11 AC 1,066 ms
82,816 KB
testcase_12 AC 43 ms
52,096 KB
testcase_13 AC 52 ms
60,160 KB
testcase_14 AC 54 ms
60,928 KB
testcase_15 AC 1,178 ms
83,072 KB
testcase_16 AC 1,357 ms
84,224 KB
testcase_17 AC 1,278 ms
83,712 KB
testcase_18 AC 1,211 ms
83,712 KB
testcase_19 AC 1,244 ms
84,096 KB
testcase_20 AC 1,303 ms
84,096 KB
testcase_21 AC 1,554 ms
83,840 KB
testcase_22 AC 1,163 ms
82,816 KB
testcase_23 AC 1,022 ms
82,560 KB
testcase_24 AC 1,267 ms
83,584 KB
testcase_25 AC 1,506 ms
85,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7


# PyPy用行列累乗 https://qiita.com/ophhdn/items/e6451ec5983939ecbc5b から拝借しています。

def mat_mul(a, b):
    I, J, K = len(a), len(b[0]), len(b)
    c = [[0] * J for _ in range(I)]
    for i in range(I):
        for j in range(J):
            for k in range(K):
                c[i][j] += a[i][k] * b[k][j]
            c[i][j] %= MOD
    return c


def mat_pow(x, n):
    y = [[0] * len(x) for _ in range(len(x))]

    for i in range(len(x)):
        y[i][i] = 1

    while n > 0:
        if n & 1:
            y = mat_mul(x, y)
        x = mat_mul(x, x)
        n >>= 1

    return y


N, K, L = map(int, input().split())

matr = [[0] * N for _ in range(N)]
for i in range(N):
    for j in range(L):
        matr[i][(i + 1 + j) % N] = 1

res = mat_pow(matr, K)[0]
print(*res, sep="\n")
0