結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 42 ms
59,136 KB
testcase_02 AC 47 ms
60,800 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 129 ms
71,680 KB
testcase_06 AC 104 ms
69,376 KB
testcase_07 AC 139 ms
73,088 KB
testcase_08 AC 54 ms
63,296 KB
testcase_09 AC 52 ms
62,848 KB
testcase_10 AC 42 ms
59,776 KB
testcase_11 AC 207 ms
76,032 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 43 ms
60,288 KB
testcase_14 AC 47 ms
61,312 KB
testcase_15 AC 218 ms
76,032 KB
testcase_16 AC 248 ms
76,160 KB
testcase_17 AC 249 ms
76,260 KB
testcase_18 AC 230 ms
76,544 KB
testcase_19 AC 242 ms
76,160 KB
testcase_20 AC 238 ms
76,288 KB
testcase_21 AC 243 ms
76,032 KB
testcase_22 AC 260 ms
76,416 KB
testcase_23 AC 205 ms
75,904 KB
testcase_24 AC 262 ms
76,080 KB
testcase_25 AC 252 ms
76,032 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
        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