結果

問題 No.2867 NOT FOUND 404 Again
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-08-30 22:35:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 78,368 KB
最終ジャッジ日時 2024-08-30 22:35:44
合計ジャッジ時間 9,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,496 KB
testcase_01 AC 37 ms
52,200 KB
testcase_02 AC 36 ms
52,336 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 102 ms
77,616 KB
testcase_19 AC 891 ms
77,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
P = 998244353

dp_eq = [1, 0, 0] #0文字一致, 1文字一致, 2文字一致
dp = [0,0,0]
for n in N:
    dp = [(dp[0]*9 + dp[1]*8 + dp[2]*9) % P, (dp[0]+dp[1]) % P, dp[1]]
    for i in range(int(n)):
        if i == 0:
            dp[0] += (dp_eq[0] + dp_eq[2])
            dp[2] += dp_eq[1]
        elif i == 4:
            dp[1] += dp_eq[0] + dp_eq[1]
        else:
            dp[0] += sum(dp_eq)
    if n == "0" and dp_eq[1] > 0:
        dp_eq = [0,0,1]
    elif n == "4":
        if dp_eq[2] > 0:
            dp_eq = [0,0,0]
        else:
            dp_eq = [0, 1, 0]
    else:
        dp_eq = [1,0,0]

if "404" in N:
    print((sum(dp) + sum(dp_eq) - 2) % P)
else:
    print((sum(dp) + sum(dp_eq) - 1) % P)
0