結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー 👑 rin204rin204
提出日時 2022-04-15 17:31:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-06-07 01:40:08
合計ジャッジ時間 4,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 44 ms
59,008 KB
testcase_02 AC 51 ms
61,184 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 132 ms
73,600 KB
testcase_06 AC 111 ms
70,656 KB
testcase_07 AC 147 ms
74,496 KB
testcase_08 AC 61 ms
63,872 KB
testcase_09 AC 59 ms
62,976 KB
testcase_10 AC 49 ms
60,416 KB
testcase_11 AC 210 ms
75,904 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 49 ms
60,288 KB
testcase_14 AC 53 ms
61,824 KB
testcase_15 AC 223 ms
76,160 KB
testcase_16 AC 250 ms
76,288 KB
testcase_17 AC 251 ms
76,160 KB
testcase_18 AC 227 ms
76,288 KB
testcase_19 AC 237 ms
76,288 KB
testcase_20 AC 246 ms
76,288 KB
testcase_21 AC 239 ms
76,160 KB
testcase_22 AC 251 ms
76,160 KB
testcase_23 AC 203 ms
76,032 KB
testcase_24 AC 263 ms
76,032 KB
testcase_25 AC 250 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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[:]
        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 = [C[i][:] for i in range(n)]
        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