結果

問題 No.2867 NOT FOUND 404 Again
ユーザー nononnonon
提出日時 2024-08-30 22:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 3,000 ms
コード長 937 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 205,148 KB
実行使用メモリ 29,036 KB
最終ジャッジ日時 2024-08-30 22:27:42
合計ジャッジ時間 5,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
27,956 KB
testcase_01 AC 9 ms
27,908 KB
testcase_02 AC 9 ms
28,028 KB
testcase_03 AC 155 ms
28,904 KB
testcase_04 AC 157 ms
29,028 KB
testcase_05 AC 159 ms
28,900 KB
testcase_06 AC 155 ms
28,908 KB
testcase_07 AC 157 ms
28,904 KB
testcase_08 AC 156 ms
28,904 KB
testcase_09 AC 160 ms
28,904 KB
testcase_10 AC 157 ms
29,028 KB
testcase_11 AC 158 ms
29,028 KB
testcase_12 AC 157 ms
28,836 KB
testcase_13 AC 158 ms
29,032 KB
testcase_14 AC 156 ms
29,036 KB
testcase_15 AC 156 ms
29,028 KB
testcase_16 AC 158 ms
28,900 KB
testcase_17 AC 157 ms
28,900 KB
testcase_18 AC 126 ms
29,032 KB
testcase_19 AC 159 ms
29,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
mint dp[1<<20][2][3];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    string S;
    cin>>S;
    int N=S.size();
    dp[0][0][0]=1;
    for(int i=0;i<N;i++)for(int j='0';j<='9';j++)for(int s:{0,1})
    {
        if(s==0&&j>S[i])continue;
        int t=s|(j<S[i]);
        if(j=='0')
        {
            dp[i+1][t][0]+=dp[i][s][0];
            dp[i+1][t][2]+=dp[i][s][1];
            dp[i+1][t][0]+=dp[i][s][2];
        }
        else if(j=='4')
        {
            dp[i+1][t][1]+=dp[i][s][0];
            dp[i+1][t][1]+=dp[i][s][1];
        }
        else
        {
            dp[i+1][t][0]+=dp[i][s][0];
            dp[i+1][t][0]+=dp[i][s][1];
            dp[i+1][t][0]+=dp[i][s][2];
        }
    }
    mint ans=-1;
    for(int s:{0,1})for(int k:{0,1,2})ans+=dp[N][s][k];
    cout<<ans.val()<<endl;
}
0