結果

問題 No.2867 NOT FOUND 404 Again
ユーザー 寝癖寝癖
提出日時 2024-07-08 12:34:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 481 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 268,612 KB
最終ジャッジ日時 2024-08-01 13:29:03
合計ジャッジ時間 5,052 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
63,872 KB
testcase_01 AC 46 ms
60,416 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int, input()))
D = len(N)
M = 100
now = [0] * (2*M)
now[0] = 1

for i, n in enumerate(N):
    nxt = [0] * (2*M)
    for smaller in range(2):
        for j in range(M):
            if not now[smaller*M+j]:
                continue
            for x in range(10 if smaller else n + 1):
                if j*10+x == 404:
                    continue
                nxt[(smaller or x < n)*M+(j*10+x)%M] += now[smaller*M+j]
    now = nxt

print((sum(now) - 1) % 998244353)
0