結果

問題 No.2867 NOT FOUND 404 Again
ユーザー Mao-betaMao-beta
提出日時 2024-09-02 14:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,300 ms / 3,000 ms
コード長 2,005 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 276,380 KB
最終ジャッジ日時 2024-09-02 14:05:41
合計ジャッジ時間 32,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,472 KB
testcase_01 AC 45 ms
57,408 KB
testcase_02 AC 47 ms
56,528 KB
testcase_03 AC 1,782 ms
276,232 KB
testcase_04 AC 1,770 ms
275,884 KB
testcase_05 AC 1,687 ms
276,312 KB
testcase_06 AC 1,739 ms
275,960 KB
testcase_07 AC 1,634 ms
276,244 KB
testcase_08 AC 1,849 ms
276,380 KB
testcase_09 AC 1,851 ms
275,572 KB
testcase_10 AC 1,730 ms
276,324 KB
testcase_11 AC 1,777 ms
276,236 KB
testcase_12 AC 1,650 ms
276,268 KB
testcase_13 AC 1,784 ms
276,356 KB
testcase_14 AC 1,674 ms
275,964 KB
testcase_15 AC 1,921 ms
276,144 KB
testcase_16 AC 1,842 ms
276,236 KB
testcase_17 AC 1,979 ms
275,856 KB
testcase_18 AC 1,384 ms
275,740 KB
testcase_19 AC 2,300 ms
275,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main(N):
    L = len(N)
    # dp[less][i][j]: 上からi桁みて、末尾の状態がj(0:以外、1:4、2:40)
    dp = [[[0]*3 for _ in range(L+1)] for _ in range(2)]
    dp[0][0][0] = 1
    for i, n in enumerate(N):
        n = int(n)
        for j in range(3):
            for less in range(2):
                xmax = 9 if less else n
                for x in range(xmax+1):
                    ni = i+1
                    if x == 4:
                        if j == 2:
                            continue
                        nj = 1
                    elif j == 1 and x == 0:
                        nj = 2
                    else:
                        nj = 0

                    if not less and x == xmax:
                        nless = 0
                    else:
                        nless = 1

                    dp[nless][ni][nj] += dp[less][i][j]
                    dp[nless][ni][nj] %= MOD99
    ans = -1
    for less in range(2):
        for j in range(3):
            # print(less, L, j, dp[less][L][j])
            ans += dp[less][L][j]
    return ans % MOD99


def guchoku(N):
    ans = 0
    for n in range(1, int(N)+1):
        n = str(n)
        if "404" not in n:
            ans += 1
    return ans % MOD99


if __name__ == "__main__":
    N = SI()
    print(main(N))
    exit()
    for N in range(1, 10**6):
        N = str(N)
        ans = main(N)
        gu = guchoku(N)
        assert ans == gu, (N, ans, gu)
0