結果

問題 No.1964 sum = length
ユーザー chineristACchineristAC
提出日時 2022-06-03 23:13:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 77,920 KB
最終ジャッジ日時 2024-09-21 03:19:36
合計ジャッジ時間 7,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,464 KB
testcase_01 AC 46 ms
56,416 KB
testcase_02 AC 55 ms
65,428 KB
testcase_03 AC 46 ms
55,900 KB
testcase_04 AC 45 ms
56,652 KB
testcase_05 AC 45 ms
55,952 KB
testcase_06 AC 46 ms
56,580 KB
testcase_07 AC 46 ms
56,980 KB
testcase_08 AC 46 ms
56,708 KB
testcase_09 AC 47 ms
57,460 KB
testcase_10 AC 47 ms
56,796 KB
testcase_11 AC 50 ms
63,588 KB
testcase_12 AC 64 ms
73,300 KB
testcase_13 AC 76 ms
77,284 KB
testcase_14 AC 91 ms
77,364 KB
testcase_15 AC 99 ms
77,284 KB
testcase_16 AC 54 ms
66,980 KB
testcase_17 AC 66 ms
74,784 KB
testcase_18 AC 72 ms
77,460 KB
testcase_19 AC 61 ms
70,940 KB
testcase_20 AC 62 ms
71,068 KB
testcase_21 AC 54 ms
65,848 KB
testcase_22 AC 300 ms
77,516 KB
testcase_23 AC 283 ms
77,528 KB
testcase_24 AC 152 ms
77,404 KB
testcase_25 AC 178 ms
77,428 KB
testcase_26 AC 326 ms
77,472 KB
testcase_27 AC 239 ms
77,484 KB
testcase_28 AC 169 ms
77,544 KB
testcase_29 AC 280 ms
77,512 KB
testcase_30 AC 180 ms
77,540 KB
testcase_31 AC 326 ms
77,800 KB
testcase_32 AC 115 ms
77,220 KB
testcase_33 AC 112 ms
77,684 KB
testcase_34 AC 282 ms
77,340 KB
testcase_35 AC 137 ms
77,452 KB
testcase_36 AC 214 ms
77,488 KB
testcase_37 AC 274 ms
77,628 KB
testcase_38 AC 352 ms
77,532 KB
testcase_39 AC 174 ms
77,264 KB
testcase_40 AC 181 ms
77,424 KB
testcase_41 AC 306 ms
77,488 KB
testcase_42 AC 370 ms
77,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())


mod = 998244353

N = int(input())
dp = [[0 for j in range(N+1)] for i in range(N+1)]
dp[0][0] = 1
for i in range(N):
    for j in range(N):
        for k in range(1,2*N+1):
            p = len(str(k))
            if j+k-p <= N:
                dp[i+1][j+k-p] += dp[i][j]
                dp[i+1][j+k-p] %= mod
print(dp[N][N-1])
0