結果

問題 No.1964 sum = length
ユーザー terasaterasa
提出日時 2022-06-03 22:33:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,763 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 423,424 KB
最終ジャッジ日時 2024-09-21 03:01:00
合計ジャッジ時間 40,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
82,340 KB
testcase_01 AC 79 ms
80,284 KB
testcase_02 AC 259 ms
108,864 KB
testcase_03 AC 84 ms
80,148 KB
testcase_04 AC 113 ms
82,440 KB
testcase_05 AC 121 ms
84,316 KB
testcase_06 AC 139 ms
86,168 KB
testcase_07 AC 151 ms
87,716 KB
testcase_08 AC 159 ms
89,604 KB
testcase_09 AC 166 ms
91,436 KB
testcase_10 AC 173 ms
93,192 KB
testcase_11 AC 180 ms
95,180 KB
testcase_12 AC 483 ms
151,192 KB
testcase_13 AC 646 ms
183,932 KB
testcase_14 AC 849 ms
221,592 KB
testcase_15 AC 927 ms
240,412 KB
testcase_16 AC 248 ms
106,816 KB
testcase_17 AC 527 ms
161,676 KB
testcase_18 AC 575 ms
172,000 KB
testcase_19 AC 415 ms
139,532 KB
testcase_20 AC 446 ms
144,988 KB
testcase_21 AC 237 ms
105,552 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,267 ms
304,244 KB
testcase_25 AC 1,357 ms
325,240 KB
testcase_26 WA -
testcase_27 AC 1,497 ms
351,092 KB
testcase_28 AC 1,320 ms
318,336 KB
testcase_29 AC 1,619 ms
371,584 KB
testcase_30 AC 1,357 ms
326,560 KB
testcase_31 WA -
testcase_32 AC 1,039 ms
258,272 KB
testcase_33 AC 994 ms
252,732 KB
testcase_34 WA -
testcase_35 AC 1,101 ms
280,728 KB
testcase_36 AC 1,417 ms
336,660 KB
testcase_37 AC 1,605 ms
368,128 KB
testcase_38 WA -
testcase_39 AC 1,401 ms
322,048 KB
testcase_40 AC 1,369 ms
328,296 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N = int(input())
mod = 998_244_353

dp = [[[0 for _ in range(510)] for _ in range(210)] for _ in range(N + 1)]
S = [[[0 for _ in range(510)] for _ in range(210)] for _ in range(N + 1)]
dp[0][0][0] = 1
for k in range(510):
    S[0][0][k] = 1

for i in range(1, N + 1):
    for j in range(1, 200):
        for k in range(1, 500):
            if j >= 1 and k >= 1:
                dp[i][j][k] += S[i - 1][j - 1][k - 1] - (S[i - 1][j - 1][k - 10] if k >= 10 else 0)
            if j >= 2 and k >= 10:
                dp[i][j][k] += S[i - 1][j - 2][k - 10] - (S[i - 1][j - 2][k - 100] if k >= 100 else 0)
            if j >= 3 and k >= 100:
                dp[i][j][k] += S[i - 1][j - 3][k - 100] - (S[i - 1][j - 3][k - 1000] if k >= 1000 else 0)
            dp[i][j][k] %= mod

            S[i][j][k] += S[i][j][k - 1] + dp[i][j][k]
            S[i][j][k] %= mod

ans = 0
for j in range(200):
    for k in range(500):
        if j + N - 1 == k:
            ans += dp[N][j][k]
            ans %= mod
print(ans)
0