結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | 寝癖 |
提出日時 | 2024-07-08 12:25:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 511 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 137,188 KB |
最終ジャッジ日時 | 2024-08-01 13:28:58 |
合計ジャッジ時間 | 5,247 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
67,328 KB |
testcase_01 | AC | 56 ms
67,072 KB |
testcase_02 | AC | 39 ms
59,392 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 | -- | - |
ソースコード
N = list(map(int, input())) D = len(N) M = 100 now = [[0] * M for _ in range(2)] now[0][0] = 1 for i, n in enumerate(N): nxt = [[0] * M for _ in range(2)] for smaller in range(2): for j in range(M): for x in range(10 if smaller else n + 1): if j*10+x == 404: continue nxt[smaller or x < n][(j*10+x)%M] += now[smaller][j] now = [[v % 998244353 for v in row] for row in nxt] print((sum(now[0]) + sum(now[1]) - 1) % 998244353)