結果

問題 No.1964 sum = length
ユーザー terasaterasa
提出日時 2022-06-03 22:43:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,763 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 489,088 KB
最終ジャッジ日時 2024-09-21 03:04:22
合計ジャッジ時間 47,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
83,328 KB
testcase_01 AC 99 ms
80,912 KB
testcase_02 AC 302 ms
114,816 KB
testcase_03 AC 95 ms
81,176 KB
testcase_04 AC 132 ms
83,604 KB
testcase_05 AC 146 ms
85,824 KB
testcase_06 AC 161 ms
87,552 KB
testcase_07 AC 174 ms
89,984 KB
testcase_08 AC 181 ms
91,904 KB
testcase_09 AC 192 ms
94,960 KB
testcase_10 AC 208 ms
96,768 KB
testcase_11 AC 220 ms
98,996 KB
testcase_12 AC 579 ms
165,888 KB
testcase_13 AC 763 ms
204,416 KB
testcase_14 AC 986 ms
249,728 KB
testcase_15 AC 1,116 ms
272,640 KB
testcase_16 AC 290 ms
112,256 KB
testcase_17 AC 617 ms
178,304 KB
testcase_18 AC 688 ms
190,208 KB
testcase_19 AC 503 ms
151,092 KB
testcase_20 AC 512 ms
157,988 KB
testcase_21 AC 268 ms
110,232 KB
testcase_22 TLE -
testcase_23 WA -
testcase_24 AC 1,494 ms
348,360 KB
testcase_25 AC 1,605 ms
372,608 KB
testcase_26 TLE -
testcase_27 AC 1,805 ms
403,456 KB
testcase_28 AC 1,560 ms
364,696 KB
testcase_29 AC 1,882 ms
427,776 KB
testcase_30 AC 1,634 ms
374,756 KB
testcase_31 TLE -
testcase_32 AC 1,189 ms
293,120 KB
testcase_33 AC 1,200 ms
287,240 KB
testcase_34 TLE -
testcase_35 AC 1,327 ms
320,000 KB
testcase_36 AC 1,670 ms
386,816 KB
testcase_37 AC 1,851 ms
423,936 KB
testcase_38 TLE -
testcase_39 AC 1,597 ms
368,740 KB
testcase_40 AC 1,655 ms
376,960 KB
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

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(610)] for _ in range(210)] for _ in range(N + 1)]
S = [[[0 for _ in range(610)] for _ in range(210)] for _ in range(N + 1)]
dp[0][0][0] = 1
for k in range(610):
    S[0][0][k] = 1

for i in range(1, N + 1):
    for j in range(1, 200):
        for k in range(1, 600):
            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(600):
        if j + N - 1 == k:
            ans += dp[N][j][k]
            ans %= mod
print(ans)
0