結果

問題 No.2867 NOT FOUND 404 Again
ユーザー tassei903tassei903
提出日時 2024-08-30 21:38:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,782 ms / 3,000 ms
コード長 1,429 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 86,180 KB
最終ジャッジ日時 2024-08-30 21:38:46
合計ジャッジ時間 29,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,940 KB
testcase_01 AC 42 ms
60,224 KB
testcase_02 AC 37 ms
52,552 KB
testcase_03 AC 1,639 ms
85,492 KB
testcase_04 AC 1,682 ms
85,616 KB
testcase_05 AC 1,654 ms
86,084 KB
testcase_06 AC 1,650 ms
86,048 KB
testcase_07 AC 1,652 ms
85,648 KB
testcase_08 AC 1,641 ms
86,116 KB
testcase_09 AC 1,664 ms
85,640 KB
testcase_10 AC 1,706 ms
85,556 KB
testcase_11 AC 1,650 ms
85,956 KB
testcase_12 AC 1,596 ms
85,820 KB
testcase_13 AC 1,654 ms
86,148 KB
testcase_14 AC 1,652 ms
85,640 KB
testcase_15 AC 1,631 ms
85,948 KB
testcase_16 AC 1,632 ms
85,748 KB
testcase_17 AC 1,635 ms
86,180 KB
testcase_18 AC 1,364 ms
85,340 KB
testcase_19 AC 1,782 ms
85,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n = [int(x) for x in input()]
m = len(n)
mod = 998244353
dp = [[0] * 2 for _ in range(3)]

dp[0][0] = 1

for i in range(m):
    new_dp = [[0] * 2 for _ in range(3)]
    for j in range(3):
        for k in range(2):
            for d in range(10):
                nj = j
                nk = k
                if nk == 0:
                    if d > n[i]:
                        continue
                    if d < n[i]:
                        nk = 1
                if j == 0:
                    if d == 4:
                        nj = 1
                elif j == 1:
                    if d == 0:
                        nj = 2
                    elif d == 4:
                        nj = 1
                    else:
                        nj = 0
                elif j == 2:
                    if d == 4:
                        continue
                    else:
                        nj = 0
                new_dp[nj][nk] += dp[j][k]
                new_dp[nj][nk] %= mod
    dp = new_dp

ans = sum(dp[i][1] + dp[i][0] for i in range(3)) % mod
print((ans-1) % mod)
0