結果

問題 No.2874 Gunegune Tree
ユーザー nikoro256nikoro256
提出日時 2024-09-06 22:57:46
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 843 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 849,240 KB
最終ジャッジ日時 2024-09-06 22:57:55
合計ジャッジ時間 3,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,132 KB
testcase_01 AC 36 ms
53,144 KB
testcase_02 AC 34 ms
54,040 KB
testcase_03 MLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    if b:
        d, y, x = extgcd(b, a % b)
        y -= (a // b) * x
        return d, x, y
    return a, 1, 0

#以下modinv
def mod_inv(a, m):
    g, x, y = extgcd(a, m)

    if g != 1:
        raise Exception()

    if x < 0:
        x += m

    return x

N=int(input())
p=998244353
invs = [0]+[mod_inv(i,p) for i in range(1,10)]
dp=[[0 for _ in range(5)] for _ in range(N)]
go=[[4,5],[3,4,5],[2,3,4],[1,2,3],[1,2]]
for i in range(N-1,0,-1):
    for j in range(5):
        for g in go[j]:
            if j in {1,2,3}:
                dp[i-1][g-1]+=(dp[i][j]+1)*invs[len(go[g-1])]
            else:
                dp[i-1][g-1]+=(dp[i][j])*invs[len(go[g-1])]
ans=0
for i in range(5):
    if i in {1,2,3}:
        ans+=(1+dp[0][i])*invs[5]
        ans%=p
    else:
        ans+=(dp[0][i])*invs[5]
        ans%=p
print(ans)
0