結果

問題 No.2874 Gunegune Tree
ユーザー nononnonon
提出日時 2024-09-06 22:24:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 205,572 KB
実行使用メモリ 8,656 KB
最終ジャッジ日時 2024-09-06 22:24:37
合計ジャッジ時間 7,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,432 KB
testcase_01 AC 4 ms
8,576 KB
testcase_02 AC 4 ms
8,656 KB
testcase_03 AC 28 ms
8,484 KB
testcase_04 AC 144 ms
8,508 KB
testcase_05 AC 58 ms
8,572 KB
testcase_06 AC 4 ms
8,596 KB
testcase_07 AC 325 ms
8,432 KB
testcase_08 AC 163 ms
8,520 KB
testcase_09 AC 17 ms
8,524 KB
testcase_10 AC 277 ms
8,596 KB
testcase_11 AC 219 ms
8,436 KB
testcase_12 AC 70 ms
8,480 KB
testcase_13 AC 348 ms
8,524 KB
testcase_14 AC 266 ms
8,540 KB
testcase_15 AC 48 ms
8,484 KB
testcase_16 AC 341 ms
8,448 KB
testcase_17 AC 40 ms
8,472 KB
testcase_18 AC 44 ms
8,428 KB
testcase_19 AC 30 ms
8,436 KB
testcase_20 AC 40 ms
8,512 KB
testcase_21 AC 113 ms
8,516 KB
testcase_22 AC 173 ms
8,500 KB
testcase_23 AC 108 ms
8,588 KB
testcase_24 AC 135 ms
8,416 KB
testcase_25 AC 251 ms
8,504 KB
testcase_26 AC 139 ms
8,612 KB
testcase_27 AC 322 ms
8,508 KB
testcase_28 AC 79 ms
8,488 KB
testcase_29 AC 192 ms
8,572 KB
testcase_30 AC 153 ms
8,424 KB
testcase_31 AC 121 ms
8,428 KB
testcase_32 AC 344 ms
8,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
mint dp[2<<17][5];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin>>N;
    for(int j=0;j<5;j++)dp[0][j]=mint(5).inv();
    for(int i=0;i<N;i++)
    {
        dp[i+1][0]=dp[i][0]/2+dp[i][1]/3;
        dp[i+1][1]=dp[i][0]/2+dp[i][1]/3+dp[i][2]/3;
        dp[i+1][2]=dp[i][1]/3+dp[i][2]/3+dp[i][3]/3;
        dp[i+1][3]=dp[i][2]/3+dp[i][3]/3+dp[i][4]/2;
        dp[i+1][4]=dp[i][3]/3+dp[i][4]/2;
    }
    mint ans=0;
    for(int i=0;i<N;i++)for(int j=1;j<4;j++)ans+=dp[i][j];
    cout<<ans.val()<<endl;
}
0