結果

問題 No.2867 NOT FOUND 404 Again
ユーザー vjudge1vjudge1
提出日時 2024-10-13 17:40:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 239 ms / 3,000 ms
コード長 982 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 201,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 17:40:53
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 182 ms
5,248 KB
testcase_04 AC 185 ms
5,248 KB
testcase_05 AC 177 ms
5,248 KB
testcase_06 AC 186 ms
5,248 KB
testcase_07 AC 189 ms
5,248 KB
testcase_08 AC 180 ms
5,248 KB
testcase_09 AC 181 ms
5,248 KB
testcase_10 AC 187 ms
5,248 KB
testcase_11 AC 182 ms
5,248 KB
testcase_12 AC 184 ms
5,248 KB
testcase_13 AC 183 ms
5,248 KB
testcase_14 AC 180 ms
5,248 KB
testcase_15 AC 181 ms
5,248 KB
testcase_16 AC 180 ms
5,248 KB
testcase_17 AC 186 ms
5,248 KB
testcase_18 AC 130 ms
5,248 KB
testcase_19 AC 239 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
long long dp[2][2][3];
int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	string N;
    cin>>N;
	int now=0;
	dp[now][0][0]=1;
	for(char c:N){
		int nxt=1-now;
		for(int i=0;i<2;i++){
            for(int j=0;j<3;j++){
			    dp[nxt][i][j]=0;
		    }
        }
		for(int i=0;i<2;i++){
			int U=i?9:c-'0';
			for(int k=0;k<=U;k++){
				int ni=i||k<U;
				if(k==4){
					(dp[nxt][ni][1]+=dp[now][i][0])%=mod;
					(dp[nxt][ni][1]+=dp[now][i][1])%=mod;
				}else if(k==0){
					(dp[nxt][ni][0]+=dp[now][i][0])%=mod;
					(dp[nxt][ni][2]+=dp[now][i][1])%=mod;
					(dp[nxt][ni][0]+=dp[now][i][2])%=mod;
				}else{
					(dp[nxt][ni][0]+=dp[now][i][0])%=mod;
					(dp[nxt][ni][0]+=dp[now][i][1])%=mod;
					(dp[nxt][ni][0]+=dp[now][i][2])%=mod;
				}
			}
		}
		now=nxt;
	}
	long long ans=-1;
	for(int i=0;i<2;i++) {
        for(int j=0;j<3;j++) {
            (ans+=dp[now][i][j])%=mod;
        }
    }
    cout<<ans;
}
0