結果

問題 No.2867 NOT FOUND 404 Again
ユーザー vjudge1vjudge1
提出日時 2024-09-12 10:25:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 549 ms / 3,000 ms
コード長 1,287 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 248,356 KB
実行使用メモリ 39,484 KB
最終ジャッジ日時 2024-09-12 10:25:51
合計ジャッジ時間 14,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 536 ms
39,480 KB
testcase_04 AC 509 ms
39,352 KB
testcase_05 AC 508 ms
39,356 KB
testcase_06 AC 508 ms
39,480 KB
testcase_07 AC 508 ms
39,480 KB
testcase_08 AC 507 ms
39,352 KB
testcase_09 AC 507 ms
39,480 KB
testcase_10 AC 508 ms
39,484 KB
testcase_11 AC 508 ms
39,352 KB
testcase_12 AC 510 ms
39,480 KB
testcase_13 AC 534 ms
39,352 KB
testcase_14 AC 508 ms
39,480 KB
testcase_15 AC 508 ms
39,484 KB
testcase_16 AC 506 ms
39,476 KB
testcase_17 AC 509 ms
39,484 KB
testcase_18 AC 374 ms
39,356 KB
testcase_19 AC 549 ms
39,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 1e6 + 5;
const int mod = 998244353;

int n, a[N], dp[N][2][2][2];
string s;

void ps(int &a, int b){
  a += b;
  while(a >= mod) a -= mod;
}

void transfer(int x, int opa, int opb, int limit){
  for(int i = 0; i <= (limit ? a[x + 1] : 9); i++){
    if(opb && i == 4) continue;
    if(i == 4) ps(dp[x + 1][1][0][(limit && i == a[x + 1])], dp[x][opa][opb][limit]);
    else if(!i) ps(dp[x + 1][0][opa][(limit && i == a[x + 1])], dp[x][opa][opb][limit]);
    else ps(dp[x + 1][0][0][(limit && i == a[x + 1])], dp[x][opa][opb][limit]);
  }
}

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> s;
  n = s.size();
  s = ' ' + s;
  for(int i = 1; i <= n; i++) a[i] = int(s[i] - '0');
  for(int i = 1; i <= n; i++){
    for(int j = 1; j <= (i == 1 ? a[i] : 9); j++){
      if(j == 4) ps(dp[i][1][0][(i == 1 && j == a[i])], 1);
      else ps(dp[i][0][0][(i == 1 && j == a[i])], 1);
    }
  }
  for(int i = 1; i < n; i++){
    for(int state = 0; state < 8; state++){
      transfer(i, ((state >> 2) & 1), ((state >> 1) & 1), ((state >> 0) & 1));
    }
  }
  int ans = 0;
  for(int state = 0; state < 7; state++){
    ps(ans, dp[n][((state >> 2) & 1)][((state >> 1) & 1)][((state >> 0) & 1)]);
  }
  cout << ans;
  return 0;
}
0