結果

問題 No.1964 sum = length
ユーザー EguyEguy
提出日時 2022-06-03 21:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-09-21 02:32:51
合計ジャッジ時間 6,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 46 ms
61,696 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
52,656 KB
testcase_06 AC 41 ms
58,880 KB
testcase_07 AC 43 ms
59,392 KB
testcase_08 AC 43 ms
58,744 KB
testcase_09 AC 42 ms
59,008 KB
testcase_10 AC 47 ms
58,880 KB
testcase_11 AC 43 ms
59,520 KB
testcase_12 AC 53 ms
68,480 KB
testcase_13 AC 62 ms
76,132 KB
testcase_14 AC 74 ms
75,648 KB
testcase_15 AC 83 ms
76,028 KB
testcase_16 AC 47 ms
61,312 KB
testcase_17 AC 55 ms
71,168 KB
testcase_18 AC 57 ms
74,420 KB
testcase_19 AC 50 ms
65,652 KB
testcase_20 AC 51 ms
67,072 KB
testcase_21 AC 48 ms
61,312 KB
testcase_22 AC 228 ms
75,904 KB
testcase_23 AC 215 ms
76,032 KB
testcase_24 AC 124 ms
75,904 KB
testcase_25 AC 142 ms
75,904 KB
testcase_26 AC 247 ms
75,776 KB
testcase_27 AC 170 ms
76,032 KB
testcase_28 AC 138 ms
75,776 KB
testcase_29 AC 194 ms
75,916 KB
testcase_30 AC 143 ms
76,032 KB
testcase_31 AC 246 ms
75,848 KB
testcase_32 AC 92 ms
76,204 KB
testcase_33 AC 91 ms
75,904 KB
testcase_34 AC 214 ms
76,116 KB
testcase_35 AC 106 ms
76,008 KB
testcase_36 AC 155 ms
75,648 KB
testcase_37 AC 191 ms
75,648 KB
testcase_38 AC 263 ms
75,932 KB
testcase_39 AC 140 ms
75,904 KB
testcase_40 AC 149 ms
75,776 KB
testcase_41 AC 239 ms
76,152 KB
testcase_42 AC 278 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

N = int(input())

dp = [0] * (N)
dp[-1] = 1
for i in range(N):
    ndp = [0] * N
    for j in range(N):
        if not dp[j]:
            continue
        for k in range(1, N+100):
            idx = j-k + len(str(k))
            if idx < 0:
                continue
            ndp[idx] += dp[j]
            ndp[idx] %= mod
    dp = ndp

print(dp[0])
0