結果

問題 No.2874 Gunegune Tree
ユーザー ニックネームニックネーム
提出日時 2024-09-06 23:15:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 622 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-06 23:17:18
合計ジャッジ時間 33,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 200 ms
10,752 KB
testcase_04 AC 1,078 ms
10,880 KB
testcase_05 AC 449 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 TLE -
testcase_08 AC 1,132 ms
10,880 KB
testcase_09 AC 135 ms
10,752 KB
testcase_10 TLE -
testcase_11 AC 1,525 ms
10,752 KB
testcase_12 AC 508 ms
10,752 KB
testcase_13 TLE -
testcase_14 AC 1,902 ms
10,752 KB
testcase_15 AC 344 ms
10,880 KB
testcase_16 TLE -
testcase_17 AC 279 ms
10,880 KB
testcase_18 AC 323 ms
10,752 KB
testcase_19 AC 202 ms
10,752 KB
testcase_20 AC 287 ms
10,752 KB
testcase_21 AC 778 ms
10,752 KB
testcase_22 AC 1,153 ms
10,752 KB
testcase_23 AC 711 ms
10,752 KB
testcase_24 AC 946 ms
10,752 KB
testcase_25 AC 1,580 ms
10,752 KB
testcase_26 AC 995 ms
10,752 KB
testcase_27 TLE -
testcase_28 AC 546 ms
10,752 KB
testcase_29 AC 1,344 ms
10,752 KB
testcase_30 AC 1,092 ms
10,880 KB
testcase_31 AC 809 ms
10,752 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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