結果

問題 No.2874 Gunegune Tree
ユーザー nikoro256nikoro256
提出日時 2024-09-06 22:59:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 98,460 KB
最終ジャッジ日時 2024-09-06 22:59:28
合計ジャッジ時間 4,889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,940 KB
testcase_01 AC 34 ms
54,108 KB
testcase_02 AC 33 ms
52,192 KB
testcase_03 AC 65 ms
77,800 KB
testcase_04 AC 117 ms
85,672 KB
testcase_05 AC 77 ms
78,496 KB
testcase_06 AC 43 ms
62,880 KB
testcase_07 AC 188 ms
97,176 KB
testcase_08 AC 124 ms
85,940 KB
testcase_09 AC 60 ms
71,724 KB
testcase_10 AC 173 ms
93,784 KB
testcase_11 AC 146 ms
90,252 KB
testcase_12 AC 84 ms
78,768 KB
testcase_13 AC 197 ms
97,256 KB
testcase_14 AC 170 ms
93,500 KB
testcase_15 AC 74 ms
78,456 KB
testcase_16 AC 198 ms
98,056 KB
testcase_17 AC 77 ms
78,480 KB
testcase_18 AC 71 ms
78,476 KB
testcase_19 AC 65 ms
77,968 KB
testcase_20 AC 68 ms
78,464 KB
testcase_21 AC 99 ms
82,400 KB
testcase_22 AC 126 ms
86,956 KB
testcase_23 AC 95 ms
82,264 KB
testcase_24 AC 111 ms
85,020 KB
testcase_25 AC 153 ms
91,640 KB
testcase_26 AC 114 ms
85,548 KB
testcase_27 AC 211 ms
97,428 KB
testcase_28 AC 85 ms
81,240 KB
testcase_29 AC 136 ms
88,852 KB
testcase_30 AC 118 ms
85,872 KB
testcase_31 AC 97 ms
82,304 KB
testcase_32 AC 205 ms
98,460 KB
権限があれば一括ダウンロードができます

ソースコード

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])]
                dp[i-1][g-1]%=p
            else:
                dp[i-1][g-1]+=(dp[i][j])*invs[len(go[g-1])]
                dp[i-1][g-1]%=p
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