結果

問題 No.2867 NOT FOUND 404 Again
ユーザー vjudge1vjudge1
提出日時 2024-09-12 22:17:10
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 925 ms / 3,000 ms
コード長 1,141 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 247,476 KB
実行使用メモリ 262,196 KB
最終ジャッジ日時 2024-09-12 22:17:29
合計ジャッジ時間 18,415 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
144,000 KB
testcase_01 AC 39 ms
144,172 KB
testcase_02 AC 40 ms
144,124 KB
testcase_03 AC 826 ms
262,152 KB
testcase_04 AC 834 ms
262,140 KB
testcase_05 AC 807 ms
262,196 KB
testcase_06 AC 802 ms
262,036 KB
testcase_07 AC 809 ms
262,164 KB
testcase_08 AC 802 ms
262,032 KB
testcase_09 AC 806 ms
262,100 KB
testcase_10 AC 832 ms
262,128 KB
testcase_11 AC 803 ms
262,088 KB
testcase_12 AC 804 ms
262,152 KB
testcase_13 AC 804 ms
262,196 KB
testcase_14 AC 803 ms
262,136 KB
testcase_15 AC 803 ms
262,108 KB
testcase_16 AC 801 ms
262,196 KB
testcase_17 AC 804 ms
262,004 KB
testcase_18 AC 867 ms
262,108 KB
testcase_19 AC 925 ms
261,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
#define fi first
#define sc second
#define pii pair<int,int>
#define pb push_back
#define umap unordered_map
#define mset multiset
#define pq priority_queue
#define ull unsigned long long
#define i128 __int128
const int maxn=1e6+10;
const int mod=998244353;
string s;
int n,a[maxn],f[maxn][3][3][2];
/*
0 -> None
1 -> 0
2 -> 4
*/
int dfs(int x,int lst,int llst,bool flg){
    if(!x) return 1;
    if(~f[x][lst][llst][flg]) return f[x][lst][llst][flg];
    int up=(flg?a[x]:9),res=0;
    for(int i=0;i<=up;i++){
        if(lst==1&&llst==2&&i==4) continue;
        int num=((i==4)?2:(i==0?1:0));
        res=(res+dfs(x-1,num,lst,flg&(i==a[x])))%mod; 
    }
    return f[x][lst][llst][flg]=res;
}
void solve(){
    cin>>s,n=s.size(),s=" "+s,memset(f,-1,sizeof f);
    for(int i=1;i<=n;i++) a[i]=(s[n-i+1]-'0');
    cout<<(dfs(n,0,0,1)-1+mod)%mod<<endl;
}
signed main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--) solve();
    return 0;
}
/*
Samples
input:

output:

THINGS TODO:
??freopen???????
????
????????????
*/
0