結果

問題 No.2867 NOT FOUND 404 Again
ユーザー detteiuudetteiuu
提出日時 2024-08-30 23:52:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,648 ms / 3,000 ms
コード長 815 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 78,800 KB
最終ジャッジ日時 2024-08-30 23:52:27
合計ジャッジ時間 18,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,088 KB
testcase_01 AC 37 ms
52,528 KB
testcase_02 AC 37 ms
53,692 KB
testcase_03 AC 906 ms
78,096 KB
testcase_04 AC 917 ms
78,708 KB
testcase_05 AC 959 ms
78,124 KB
testcase_06 AC 867 ms
78,544 KB
testcase_07 AC 966 ms
78,436 KB
testcase_08 AC 909 ms
78,028 KB
testcase_09 AC 1,150 ms
78,800 KB
testcase_10 AC 891 ms
78,456 KB
testcase_11 AC 896 ms
78,320 KB
testcase_12 AC 926 ms
78,304 KB
testcase_13 AC 914 ms
78,256 KB
testcase_14 AC 878 ms
77,904 KB
testcase_15 AC 897 ms
78,504 KB
testcase_16 AC 893 ms
78,476 KB
testcase_17 AC 1,121 ms
78,468 KB
testcase_18 AC 982 ms
78,024 KB
testcase_19 AC 1,648 ms
78,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
L = len(N)

MOD = 998244353
now = [[0]*3 for _ in range(2)]
now[0][0] = 1
for i in range(L):
    nex = [[0]*3 for _ in range(2)]
    for small in range(2):
        for j in range(3):
            if now[small][j] == 0:
                continue
            for k in range(10 if small else int(N[i])+1):
                if j == 2 and k == 4:
                    continue
                if j == 0 and k == 4 or j == 1 and k == 0:
                    nex[small or k<int(N[i])][j+1] += now[small][j]
                    nex[small or k<int(N[i])][j+1] %= MOD
                else:
                    nex[small or k<int(N[i])][1 if k == 4 else 0] += now[small][j]
                    nex[small or k<int(N[i])][1 if k == 4 else 0] %= MOD
    now = [n[:] for n in nex[:]]

print((sum(now[0])+sum(now[1])-1)%MOD)
0