結果

問題 No.2874 Gunegune Tree
ユーザー ニックネームニックネーム
提出日時 2024-09-06 23:17:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,856 KB
最終ジャッジ日時 2024-09-06 23:17:30
合計ジャッジ時間 4,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,056 KB
testcase_01 AC 34 ms
53,076 KB
testcase_02 AC 32 ms
53,084 KB
testcase_03 AC 83 ms
76,720 KB
testcase_04 AC 122 ms
76,700 KB
testcase_05 AC 88 ms
76,484 KB
testcase_06 AC 45 ms
63,664 KB
testcase_07 AC 182 ms
76,504 KB
testcase_08 AC 117 ms
76,576 KB
testcase_09 AC 80 ms
76,668 KB
testcase_10 AC 149 ms
76,588 KB
testcase_11 AC 133 ms
76,644 KB
testcase_12 AC 91 ms
76,676 KB
testcase_13 AC 167 ms
76,692 KB
testcase_14 AC 150 ms
76,584 KB
testcase_15 AC 93 ms
76,796 KB
testcase_16 AC 190 ms
76,856 KB
testcase_17 AC 87 ms
76,520 KB
testcase_18 AC 89 ms
76,780 KB
testcase_19 AC 89 ms
76,592 KB
testcase_20 AC 85 ms
76,628 KB
testcase_21 AC 110 ms
76,576 KB
testcase_22 AC 121 ms
76,588 KB
testcase_23 AC 105 ms
76,636 KB
testcase_24 AC 120 ms
76,700 KB
testcase_25 AC 148 ms
76,836 KB
testcase_26 AC 134 ms
76,644 KB
testcase_27 AC 172 ms
76,564 KB
testcase_28 AC 100 ms
76,600 KB
testcase_29 AC 131 ms
76,576 KB
testcase_30 AC 126 ms
76,592 KB
testcase_31 AC 107 ms
76,488 KB
testcase_32 AC 171 ms
76,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = int(input()),998244353
d,e,f = pow(5,-1,z),pow(3,-1,z),pow(2,-1,z)
p = [0,d,d,d,0]; q = [d]*5
for _ in range(n-1):
    pp = [0]*5; qq = [0]*5
    for i in range(5):
        if i==0:
            for j in range(2):
                pp[j] += (p[i]+(0<j)*q[i])*f
                qq[j] += q[i]*f
        elif i==4:
            for j in range(3,5):
                pp[j] += (p[i]+(j<4)*q[i])*f
                qq[j] += q[i]*f
        else:
            for j in range(i-1,i+2):
                pp[j] += (p[i]+(0<j<4)*q[i])*e
                qq[j] += q[i]*e
    p = [v%z for v in pp]; q = [v%z for v in qq]
print(sum(p)%z)
0