結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-28 22:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-07 09:50:31
合計ジャッジ時間 6,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 47 ms
59,520 KB
testcase_02 AC 50 ms
61,440 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 185 ms
75,904 KB
testcase_06 AC 147 ms
74,112 KB
testcase_07 AC 217 ms
76,296 KB
testcase_08 AC 66 ms
65,792 KB
testcase_09 AC 68 ms
65,920 KB
testcase_10 AC 52 ms
62,464 KB
testcase_11 AC 326 ms
76,160 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 47 ms
59,264 KB
testcase_14 AC 57 ms
64,000 KB
testcase_15 AC 350 ms
76,196 KB
testcase_16 AC 406 ms
76,492 KB
testcase_17 AC 390 ms
76,160 KB
testcase_18 AC 368 ms
76,288 KB
testcase_19 AC 377 ms
76,288 KB
testcase_20 AC 406 ms
76,380 KB
testcase_21 AC 396 ms
76,544 KB
testcase_22 AC 383 ms
76,048 KB
testcase_23 AC 327 ms
76,288 KB
testcase_24 AC 380 ms
76,052 KB
testcase_25 AC 510 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,l = map(int,input().split())
mod = 10**9+7


base = [[0]*n for i in range(n)]
for i in range(n):
    base[i][i] = 1

A = [[0]*n for i in range(n)]
for i in range(n):
    for j in range(1,l+1):
        A[i][(i-j)%n] = 1

def calc(X,Y):
    ans = [[0]*n for i in range(n)]
    for i in range(n):
        for j in range(n):
            for x in range(n):
                ans[i][j] += X[i][x]*Y[x][j]
                ans[i][j] %= mod

    return ans


while k:
    if k%2:
        base = calc(base,A)
    A = calc(A,A)
    k //= 2

for i in range(n):
    print(base[i][0])
0