結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー nasubi24nasubi24
提出日時 2021-05-28 21:42:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 721 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-11-07 09:13:21
合計ジャッジ時間 10,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 49 ms
60,160 KB
testcase_02 AC 49 ms
61,056 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 47 ms
60,160 KB
testcase_05 AC 271 ms
70,144 KB
testcase_06 AC 236 ms
69,248 KB
testcase_07 AC 297 ms
70,584 KB
testcase_08 AC 69 ms
64,128 KB
testcase_09 AC 66 ms
63,488 KB
testcase_10 AC 49 ms
60,928 KB
testcase_11 AC 550 ms
73,688 KB
testcase_12 AC 41 ms
52,344 KB
testcase_13 AC 47 ms
60,800 KB
testcase_14 AC 55 ms
62,720 KB
testcase_15 AC 575 ms
74,044 KB
testcase_16 AC 661 ms
77,792 KB
testcase_17 AC 646 ms
77,556 KB
testcase_18 AC 619 ms
74,624 KB
testcase_19 AC 637 ms
77,884 KB
testcase_20 AC 684 ms
78,080 KB
testcase_21 AC 628 ms
77,708 KB
testcase_22 AC 721 ms
77,876 KB
testcase_23 AC 497 ms
73,344 KB
testcase_24 AC 716 ms
77,736 KB
testcase_25 AC 700 ms
77,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,l=map(int,input().split())
dp=[[[0]*n for _ in range(22)] for z in range(n)]
for i in range(n):
    dp[i][0][i]=1
mod=10**9+7
for i in range(n):
    for j in range(1,l+1):
        dp[i][1][(j+i)%n]=1
for j in range(1,21):
    for i in range(n):
        for l in range(n):
            for m in range(n):
                dp[i][j+1][l]+=dp[i][j][m]*dp[m][j][l]
                dp[i][j+1][l]%=mod
s=bin(k)[2:]
ans=[[0]*n for _ in range(len(s)+1)]
ans[0][0]=1
for i in range(len(s)):
    if s[-1-i]=="1":
        for j in range(n):
            for k in range(n):
                ans[i+1][k%n]+=ans[i][j]*dp[j][i+1][k]
                ans[i+1][k%n]%=mod
    else:
        for j in range(n):
            ans[i+1][j]=ans[i][j]
for i in ans[-1]:
    print(i)
0