結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー H3PO4H3PO4
提出日時 2022-08-31 09:22:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 548 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,456 KB
最終ジャッジ日時 2024-11-08 01:14:56
合計ジャッジ時間 16,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
49,456 KB
testcase_01 AC 521 ms
44,532 KB
testcase_02 AC 514 ms
44,084 KB
testcase_03 AC 515 ms
44,204 KB
testcase_04 AC 519 ms
44,144 KB
testcase_05 AC 1,297 ms
46,124 KB
testcase_06 AC 1,114 ms
45,348 KB
testcase_07 AC 1,537 ms
45,868 KB
testcase_08 AC 597 ms
44,084 KB
testcase_09 AC 578 ms
43,812 KB
testcase_10 AC 534 ms
44,076 KB
testcase_11 TLE -
testcase_12 AC 530 ms
43,952 KB
testcase_13 AC 531 ms
44,200 KB
testcase_14 AC 542 ms
44,464 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

MOD = 10 ** 9 + 7


def pow_matrix_mod(x, n, mod=MOD):
    # x = x.astype(np.object)
    if not n:
        return np.eye(len(x), dtype=object)
    if n % 2 == 0:
        return pow_matrix_mod(x @ x % mod, n // 2) % mod
    else:
        return x @ pow_matrix_mod(x @ x % mod, (n - 1) // 2) % mod


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 = pow_matrix_mod(np.array(matr, dtype=object), K)[0]
print(*res, sep="\n")
0