結果

問題 No.2867 NOT FOUND 404 Again
ユーザー OhnoHirokiOhnoHiroki
提出日時 2024-08-30 22:39:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 749 ms / 3,000 ms
コード長 794 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,092 KB
最終ジャッジ日時 2024-08-30 22:39:38
合計ジャッジ時間 10,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 37 ms
53,068 KB
testcase_02 AC 36 ms
53,008 KB
testcase_03 AC 506 ms
77,628 KB
testcase_04 AC 555 ms
77,712 KB
testcase_05 AC 552 ms
77,972 KB
testcase_06 AC 535 ms
77,724 KB
testcase_07 AC 529 ms
77,736 KB
testcase_08 AC 495 ms
77,868 KB
testcase_09 AC 543 ms
77,948 KB
testcase_10 AC 514 ms
77,540 KB
testcase_11 AC 619 ms
78,092 KB
testcase_12 AC 516 ms
77,796 KB
testcase_13 AC 518 ms
77,896 KB
testcase_14 AC 550 ms
77,888 KB
testcase_15 AC 510 ms
77,892 KB
testcase_16 AC 521 ms
77,652 KB
testcase_17 AC 544 ms
77,556 KB
testcase_18 AC 177 ms
77,804 KB
testcase_19 AC 749 ms
77,540 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:
            if sum(dp_eq) > 0:
                dp_eq = [0, 1, 0]
            else:
                dp_eq = [0,0,0]
    elif sum(dp_eq) > 0:
        dp_eq = [1,0,0]
    else:
        dp_eq = [0,0,0]

print((sum(dp) + sum(dp_eq) - 1) % P)
0