結果

問題 No.2867 NOT FOUND 404 Again
ユーザー vjudge1vjudge1
提出日時 2024-09-12 10:58:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 859 bytes
コンパイル時間 2,997 ms
コンパイル使用メモリ 247,588 KB
実行使用メモリ 27,956 KB
最終ジャッジ日時 2024-09-12 10:58:51
合計ジャッジ時間 9,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 288 ms
27,704 KB
testcase_04 AC 281 ms
27,956 KB
testcase_05 AC 281 ms
27,832 KB
testcase_06 AC 289 ms
27,828 KB
testcase_07 AC 290 ms
27,828 KB
testcase_08 AC 300 ms
27,832 KB
testcase_09 AC 282 ms
27,704 KB
testcase_10 AC 287 ms
27,708 KB
testcase_11 AC 285 ms
27,832 KB
testcase_12 AC 285 ms
27,832 KB
testcase_13 AC 284 ms
27,704 KB
testcase_14 AC 284 ms
27,832 KB
testcase_15 AC 282 ms
27,700 KB
testcase_16 AC 287 ms
27,828 KB
testcase_17 AC 290 ms
27,832 KB
testcase_18 WA -
testcase_19 AC 360 ms
27,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

const int MAXN = 1000001, MOD = 998244353;

int n, f[MAXN][2][3], ans;
string s;

int main() {
  ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
  cin >> s;
  n = s.size(), s = ' ' + s;
  f[0][1][0] = 1;
  for(int i = 0; i < n; ++i) {
    for(bool lim : {0, 1}) {
      for(int op : {0, 1, 2}) {
        int r = s[i + 1] - '0';
        for(int num = 0; num <= (lim ? r : 9); ++num) {
          if(!(op == 2 && num == 4)) {
            f[i + 1][lim & (num == r)][(num == 4 ? 1 : (op == 1 && num == 0 ? 2 : 0))] = (f[i + 1][lim & (num == r)][(num == 4 ? 1 : (op == 1 && num == 0 ? 2 : 0))] + f[i][lim][op]) % MOD;
          }
        }
      }
    }
  }
  for(bool lim : {0, 1}) {
    for(int op : {0, 1, 2}) {
      ans = (ans + f[n][lim][op]) % MOD;
    }
  }
  cout << (ans - 1 + MOD) % MOD;
  return 0;
}
0