結果

問題 No.1516 simple 門松列 problem Re:MASTER
ユーザー 👑 rin204rin204
提出日時 2022-01-28 20:57:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,306 ms / 6,000 ms
コード長 2,257 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 100,912 KB
最終ジャッジ日時 2024-06-09 13:40:29
合計ジャッジ時間 12,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,004 KB
testcase_01 AC 159 ms
77,416 KB
testcase_02 AC 1,232 ms
89,292 KB
testcase_03 AC 55 ms
66,436 KB
testcase_04 AC 52 ms
66,332 KB
testcase_05 AC 56 ms
68,332 KB
testcase_06 AC 96 ms
76,928 KB
testcase_07 AC 154 ms
77,368 KB
testcase_08 AC 283 ms
78,920 KB
testcase_09 AC 41 ms
61,944 KB
testcase_10 AC 72 ms
70,872 KB
testcase_11 AC 54 ms
65,232 KB
testcase_12 AC 56 ms
66,372 KB
testcase_13 AC 50 ms
64,256 KB
testcase_14 AC 2,306 ms
100,912 KB
testcase_15 AC 1,035 ms
87,948 KB
testcase_16 AC 483 ms
79,252 KB
testcase_17 AC 195 ms
77,436 KB
testcase_18 AC 105 ms
77,396 KB
testcase_19 AC 78 ms
77,048 KB
testcase_20 AC 2,193 ms
100,064 KB
testcase_21 AC 2,182 ms
100,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
MOD = 998244353

n, k = map(int, input().split())
k2 = 2 * k * k
A = [[0] * k2 for _ in range(k2)]
B = [0] * k2
f = lambda x, y: x * k + y

for i in range(k):
    for j in range(i + 1, k):
        p = 2 * f(i, j)
        B[p] += 1
        B[p + 1] += i + j
        for i2 in range(j):
            if i2 == i:
                continue
            for j2 in range(i2 + 1, k):
                if j2 == j:
                    continue
                p2 = 2 * f(i2, j2)
                A[p2][p] += 1
                A[p2 + 1][p] += i2 + j2
                A[p2 + 1][p + 1] += 1

for i in range(k):
    for j in range(i):
        p = 2 * f(i, j)
        B[p] += 1
        B[p + 1] += i + j
        for i2 in range(j + 1, k):
            if i2 == i:
                continue
            for j2 in range(i2):
                if j2 == j:
                    continue
                p2 = 2 * f(i2, j2)
                A[p2][p] += 1
                A[p2 + 1][p] += i2 + j2
                A[p2 + 1][p + 1] += 1
                
                
A[-1][-1] = 1
t = n // 2 - 1

while t:
    if t & 1:
        C = [0] * k2
        for i in range(k2):
            for j in range(k2):
                C[i] += A[i][j] * B[j]
            C[i] %= MOD
        B = C.copy()
    t >>= 1
    C = [[0] * k2 for _ in range(k2)]
    for i in range(k2):
        for j in range(k2):
            for l in range(k2):
                C[i][j] += A[i][l] * A[l][j]
            C[i][j] %= MOD
    A = deepcopy(C)

if n % 2 == 0:
    cnt = 0
    tot = 0
    for i, b in enumerate(B):
        if i % 2 == 0:
            cnt += b
            cnt %= MOD
        else:
            tot += b
            tot %= MOD
    print(cnt, tot)
    
else:
    cnt = 0
    tot = 0
    for i in range(k):
        for j in range(k):
            p = 2 * f(i, j)
            if i < j:
                for l in range(j):
                    if i != l:
                        cnt += B[p]
                        tot += B[p] * l + B[p + 1]
            else:
                for l in range(j + 1, k):
                    if i != l:
                        cnt += B[p]
                        tot += B[p] * l + B[p + 1]
            cnt %= MOD
            tot %= MOD
    print(cnt, tot)
    
0