結果

問題 No.2867 NOT FOUND 404 Again
ユーザー titiatitia
提出日時 2024-09-15 04:14:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 661 ms / 3,000 ms
コード長 1,725 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 78,360 KB
最終ジャッジ日時 2024-09-15 04:15:06
合計ジャッジ時間 12,097 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 645 ms
77,756 KB
testcase_04 AC 629 ms
77,440 KB
testcase_05 AC 649 ms
77,824 KB
testcase_06 AC 645 ms
78,088 KB
testcase_07 AC 592 ms
77,832 KB
testcase_08 AC 604 ms
77,568 KB
testcase_09 AC 626 ms
77,984 KB
testcase_10 AC 614 ms
77,696 KB
testcase_11 AC 615 ms
77,696 KB
testcase_12 AC 594 ms
77,568 KB
testcase_13 AC 644 ms
77,952 KB
testcase_14 AC 592 ms
77,832 KB
testcase_15 AC 642 ms
77,976 KB
testcase_16 AC 661 ms
78,360 KB
testcase_17 AC 620 ms
77,952 KB
testcase_18 AC 432 ms
77,596 KB
testcase_19 AC 489 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

S=input().strip()

DP=[1,0,0,0,0,0]

# i桁目まで見たとき、
# 今までと数字が一致していて、"404"と一個も一致していない、一個一致、二個一致
# 今までと数字が一致しておらず、"404"と一個も一致していない、一個一致、二個一致

for i in range(len(S)):
    #print(DP)
    x=int(S[i])

    NDP=[0,0,0,0,0,0]

    for j in range(10):
        if j==x:
            if j==4:
                NDP[1]+=DP[0]
            else:
                NDP[0]+=DP[0]
        elif j<x:
            if j==4:
                NDP[4]+=DP[0]
            else:
                NDP[3]+=DP[0]

    for j in range(10):
        if j==x:
            if j==0:
                NDP[2]+=DP[1]
            elif j==4:
                NDP[1]+=DP[1]
            else:
                NDP[0]+=DP[1]
        elif j<x:
            if j==0:
                NDP[5]+=DP[1]
            elif j==4:
                NDP[4]+=DP[1]
            else:
                NDP[3]+=DP[1]

    for j in range(10):
        if j==x:
            if j==4:
                pass
            else:
                NDP[0]+=DP[2]
        elif j<x:
            if j==4:
                pass
            else:
                NDP[3]+=DP[2]

    for j in range(10):
        if j==4:
            NDP[4]+=DP[3]
        else:
            NDP[3]+=DP[3]

    for j in range(10):
        if j==0:
            NDP[5]+=DP[4]
        elif j==4:
            NDP[4]+=DP[4]
        else:
            NDP[3]+=DP[4]

    for j in range(10):
        if j==4:
            pass
        else:
            NDP[3]+=DP[5]

    for j in range(6):
        DP[j]=NDP[j]%mod

print((sum(DP)-1)%mod)
0