結果

問題 No.1516 simple 門松列 problem Re:MASTER
ユーザー ayaoniayaoni
提出日時 2021-05-22 06:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 6,000 ms
コード長 1,668 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 79,668 KB
最終ジャッジ日時 2024-10-10 10:46:58
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,856 KB
testcase_01 AC 135 ms
76,112 KB
testcase_02 AC 464 ms
77,600 KB
testcase_03 AC 50 ms
62,076 KB
testcase_04 AC 50 ms
62,320 KB
testcase_05 AC 61 ms
70,844 KB
testcase_06 AC 90 ms
76,272 KB
testcase_07 AC 132 ms
76,480 KB
testcase_08 AC 164 ms
76,204 KB
testcase_09 AC 47 ms
60,580 KB
testcase_10 AC 85 ms
75,932 KB
testcase_11 AC 60 ms
69,844 KB
testcase_12 AC 52 ms
63,600 KB
testcase_13 AC 48 ms
61,764 KB
testcase_14 AC 854 ms
79,252 KB
testcase_15 AC 448 ms
78,412 KB
testcase_16 AC 257 ms
77,144 KB
testcase_17 AC 146 ms
76,416 KB
testcase_18 AC 84 ms
76,344 KB
testcase_19 AC 74 ms
75,812 KB
testcase_20 AC 974 ms
79,668 KB
testcase_21 AC 968 ms
79,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def matrix_multiplication_mod(A,B,p):
    l = len(A)
    m = len(B)
    n = len(B[0])
    C = [[0]*n for _ in range(l)]
    for i in range(l):
        for j in range(n):
            C[i][j] = sum((A[i][k]*B[k][j]) % p for k in range(m)) % p
    return C


def matrix_power_mod(A,n,p):
    l = len(A)
    C = [[0] * l for _ in range(l)]
    for i in range(l):
        C[i][i] = 1
    while n > 0:
        if n % 2 == 1:
            C = matrix_multiplication_mod(C,A,p)
        A = matrix_multiplication_mod(A,A,p)
        n >>= 1
    return C


N,K = MI()
mod = 998244353

A = [[0]*(K**2) for _ in range(K**2)]
for j in range(K):
    for k in range(K):
        i = K*j+k
        if j < k:
            for l in range(k):
                if l == j:
                    continue
                A[i][K*k+l] = 1
        else:
            for l in range(k+1,K):
                if l == j:
                    continue
                A[i][K*k+l] = 1

X = matrix_power_mod(A,N-2,mod)
ans1 = 0
for i in range(K):
    for j in range(K):
        if i == j:
            continue
        for k in range(K**2):
            ans1 += X[K*i+j][k]
            ans1 %= mod

ans2 = ans1*N*(K-1)*(mod+1)//2
ans2 %= mod

print(ans1,ans2)
0