結果

問題 No.840 ほむほむほむら
ユーザー convexineqconvexineq
提出日時 2021-04-03 15:22:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 4,000 ms
コード長 942 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-06-07 01:26:32
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,904 KB
testcase_01 AC 54 ms
59,392 KB
testcase_02 AC 58 ms
63,488 KB
testcase_03 AC 99 ms
69,120 KB
testcase_04 AC 47 ms
60,032 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 50 ms
60,928 KB
testcase_07 AC 69 ms
66,944 KB
testcase_08 AC 140 ms
76,288 KB
testcase_09 AC 49 ms
60,672 KB
testcase_10 AC 48 ms
60,416 KB
testcase_11 AC 50 ms
62,208 KB
testcase_12 AC 80 ms
70,784 KB
testcase_13 AC 283 ms
77,312 KB
testcase_14 AC 89 ms
72,960 KB
testcase_15 AC 50 ms
61,312 KB
testcase_16 AC 56 ms
63,744 KB
testcase_17 AC 119 ms
75,648 KB
testcase_18 AC 344 ms
77,952 KB
testcase_19 AC 398 ms
78,464 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 47 ms
59,264 KB
testcase_22 AC 54 ms
61,952 KB
testcase_23 AC 384 ms
78,592 KB
testcase_24 AC 56 ms
64,768 KB
testcase_25 AC 45 ms
59,264 KB
testcase_26 AC 57 ms
63,616 KB
testcase_27 AC 382 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def matmul(A,B): # A,B: 行列
    res = [[0]*len(B[0]) for _ in [None]*len(A)]
    for i, resi in enumerate(res):
        for k, aik in enumerate(A[i]):
            for j,bkj in enumerate(B[k]):
                resi[j] += aik*bkj
                resi[j] %= MOD
    return res

def matpow(A,p): #A^p mod M
    if p%2:
        return matmul(A, matpow(A,p-1))
    elif p > 0:
        b = matpow(A,p//2)
        return matmul(b,b)
    else:
        return [[1 if i == j else 0 for j in range(len(A))] for i in range(len(A))]

n,k = map(int,input().split())
MOD = 998244353
pk = [k**i for i in range(4)]
A = [[0]*pk[3] for _ in range(pk[3])]
from itertools import product
for q,r,s in product(range(k),repeat=3):
    v = q*pk[2] + r*pk[1] + s
    for qq,rr,ss in [((1+q)%k,r,s),(q,(q+r)%k,s),(q,r,(r+s)%k)]:
        w = qq*pk[2] + rr*pk[1] + ss
        A[w][v] += 1

v = [[0]*pk[3]]
v[0][0] = 1
v = matmul(v,matpow(A,n))
print(sum(v[0][::k])%MOD)
0