結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー 👑 rin204rin204
提出日時 2022-04-15 17:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,504 KB
最終ジャッジ日時 2024-06-07 01:39:54
合計ジャッジ時間 6,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 48 ms
61,056 KB
testcase_02 AC 56 ms
65,792 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 41 ms
53,760 KB
testcase_05 AC 167 ms
77,056 KB
testcase_06 AC 133 ms
76,672 KB
testcase_07 AC 180 ms
77,056 KB
testcase_08 AC 77 ms
74,200 KB
testcase_09 AC 90 ms
77,056 KB
testcase_10 AC 55 ms
64,384 KB
testcase_11 AC 258 ms
77,028 KB
testcase_12 AC 42 ms
53,760 KB
testcase_13 AC 51 ms
62,336 KB
testcase_14 AC 63 ms
68,864 KB
testcase_15 AC 272 ms
77,056 KB
testcase_16 AC 311 ms
77,440 KB
testcase_17 AC 317 ms
77,440 KB
testcase_18 AC 292 ms
77,312 KB
testcase_19 AC 304 ms
77,440 KB
testcase_20 AC 310 ms
77,504 KB
testcase_21 AC 311 ms
77,268 KB
testcase_22 AC 337 ms
77,428 KB
testcase_23 AC 258 ms
77,092 KB
testcase_24 AC 334 ms
77,440 KB
testcase_25 AC 325 ms
77,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
MOD = 10 ** 9 + 7

def matpow(A, B, w):
    l = len(A)
    while w:
        if w & 1:
            C = [0] * l
            for i in range(l):
                for j in range(l):
                    C[i] += A[i][j] * B[j]
                    C[i] %= MOD
            B = C.copy()
        C = [[0] * l for _ in range(l)]
        for i in range(l):
            for j in range(l):
                for k in range(l):
                    C[i][j] += A[i][k] * A[k][j]
                    C[i][j] %= MOD
        A = deepcopy(C)
        w >>= 1
    return B

n, k, l = map(int, input().split())
B = [0] * n
B[0] = 1
A = [[0] * n for _ in range(n)]
for i in range(n):
    for j in range(1, l + 1):
        A[(i + j) % n][i] = 1

B = matpow(A, B, k)
print(*B, sep="\n")
0