結果

問題 No.1964 sum = length
ユーザー terasaterasa
提出日時 2022-06-03 22:47:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,191 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 372,016 KB
最終ジャッジ日時 2024-09-21 03:06:20
合計ジャッジ時間 38,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
81,828 KB
testcase_01 AC 89 ms
79,836 KB
testcase_02 AC 261 ms
104,128 KB
testcase_03 AC 90 ms
80,032 KB
testcase_04 AC 122 ms
81,812 KB
testcase_05 AC 133 ms
83,752 KB
testcase_06 AC 146 ms
84,860 KB
testcase_07 AC 152 ms
87,088 KB
testcase_08 AC 168 ms
87,724 KB
testcase_09 AC 175 ms
89,456 KB
testcase_10 AC 185 ms
90,648 KB
testcase_11 AC 192 ms
91,936 KB
testcase_12 AC 464 ms
141,008 KB
testcase_13 AC 624 ms
168,692 KB
testcase_14 AC 800 ms
200,404 KB
testcase_15 AC 893 ms
216,508 KB
testcase_16 AC 250 ms
102,832 KB
testcase_17 AC 511 ms
149,076 KB
testcase_18 AC 555 ms
158,552 KB
testcase_19 AC 405 ms
130,004 KB
testcase_20 AC 427 ms
134,788 KB
testcase_21 AC 241 ms
101,256 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,218 ms
271,400 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 953 ms
231,040 KB
testcase_33 AC 932 ms
226,828 KB
testcase_34 WA -
testcase_35 AC 1,063 ms
250,204 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
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')


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

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