結果
問題 | No.2867 NOT FOUND 404 Again |
ユーザー | 寝癖 |
提出日時 | 2024-07-08 12:20:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,726 ms / 3,000 ms |
コード長 | 556 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 131,604 KB |
最終ジャッジ日時 | 2024-08-17 23:35:59 |
合計ジャッジ時間 | 25,491 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,112 KB |
testcase_01 | AC | 38 ms
54,076 KB |
testcase_02 | AC | 37 ms
52,072 KB |
testcase_03 | AC | 1,517 ms
131,592 KB |
testcase_04 | AC | 1,235 ms
131,384 KB |
testcase_05 | AC | 1,600 ms
131,536 KB |
testcase_06 | AC | 1,500 ms
131,176 KB |
testcase_07 | AC | 1,176 ms
131,380 KB |
testcase_08 | AC | 1,503 ms
131,580 KB |
testcase_09 | AC | 1,543 ms
131,508 KB |
testcase_10 | AC | 1,209 ms
131,240 KB |
testcase_11 | AC | 1,202 ms
131,240 KB |
testcase_12 | AC | 1,459 ms
131,504 KB |
testcase_13 | AC | 1,518 ms
131,600 KB |
testcase_14 | AC | 1,531 ms
131,508 KB |
testcase_15 | AC | 1,545 ms
131,568 KB |
testcase_16 | AC | 1,519 ms
131,296 KB |
testcase_17 | AC | 1,511 ms
131,368 KB |
testcase_18 | AC | 932 ms
131,540 KB |
testcase_19 | AC | 1,726 ms
131,604 KB |
ソースコード
N = list(map(int, input())) D = len(N) M = 4 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-1): for x in range(10 if smaller else n + 1): cond = (j == 0 and x == 4) or (j == 1 and x == 0) or (j == 2 and x == 4) nxt[smaller or x < n][j+1 if cond else x == 4] += now[smaller][j] now = [[v % 998244353 for v in row] for row in nxt] print((sum(now[0][:3]) + sum(now[1][:3]) - 1) % 998244353)