結果

問題 No.1964 sum = length
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-06-03 22:31:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,315 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 152,704 KB
最終ジャッジ日時 2024-09-21 02:57:05
合計ジャッジ時間 35,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,500 KB
testcase_01 AC 42 ms
59,960 KB
testcase_02 AC 102 ms
77,140 KB
testcase_03 AC 42 ms
59,276 KB
testcase_04 AC 51 ms
62,624 KB
testcase_05 AC 66 ms
68,612 KB
testcase_06 AC 75 ms
70,932 KB
testcase_07 AC 75 ms
72,800 KB
testcase_08 AC 76 ms
75,284 KB
testcase_09 AC 79 ms
74,048 KB
testcase_10 AC 79 ms
74,356 KB
testcase_11 AC 89 ms
77,008 KB
testcase_12 AC 144 ms
77,276 KB
testcase_13 AC 214 ms
78,156 KB
testcase_14 AC 341 ms
80,016 KB
testcase_15 AC 421 ms
82,416 KB
testcase_16 AC 96 ms
77,052 KB
testcase_17 AC 162 ms
77,908 KB
testcase_18 AC 184 ms
78,544 KB
testcase_19 AC 130 ms
77,484 KB
testcase_20 AC 134 ms
77,556 KB
testcase_21 AC 94 ms
77,140 KB
testcase_22 AC 1,964 ms
129,028 KB
testcase_23 AC 1,877 ms
123,916 KB
testcase_24 AC 850 ms
91,688 KB
testcase_25 AC 1,048 ms
95,816 KB
testcase_26 TLE -
testcase_27 AC 1,419 ms
108,648 KB
testcase_28 AC 962 ms
95,532 KB
testcase_29 AC 1,715 ms
117,748 KB
testcase_30 AC 1,098 ms
98,944 KB
testcase_31 TLE -
testcase_32 AC 513 ms
83,832 KB
testcase_33 AC 483 ms
83,380 KB
testcase_34 AC 1,986 ms
124,168 KB
testcase_35 AC 655 ms
88,176 KB
testcase_36 AC 1,239 ms
99,672 KB
testcase_37 AC 1,707 ms
114,856 KB
testcase_38 TLE -
testcase_39 AC 1,006 ms
96,404 KB
testcase_40 AC 1,102 ms
99,612 KB
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nn = 2 * n + 100
dp = [[0] * (nn) for _ in range(nn)]
for i in range(nn-1):
    dp[i+1][len(str(i+1))] += 1
for j in range(1,nn):
        for i in range(1,nn):
            dp[i][j] += dp[i-1][j]
mod = 998244353 
for w in range(n-1):
    n_dp = [[0] * (nn) for _ in range(nn)]
    for i in range(1,nn):
        for j in range(1,nn):
            if j >= 2:
                if i - 10 < 0:
                    n_dp[i][j] += dp[i-1][j-2]
                else:
                    n_dp[i][j] += dp[i-1][j-2] - dp[i-10][j-2]
            if j >= 3 and i - 10 >= 0:
                if i - 100 < 0:
                    n_dp[i][j] += dp[i-10][j-3]
                else:
                    n_dp[i][j] += dp[i-10][j-3] - dp[i-100][j-3]
            if j >= 4 and i - 100 >= 0:
                if i - 1000 < 0:
                    n_dp[i][j] += dp[i-100][j-4]
                else:
                    n_dp[i][j] += dp[i-100][j-4] - dp[i-1000][j-4]
            n_dp[i][j] %= mod
#     for e in dp:
#         print(e)
#     print()
#     for e in n_dp:
#         print(e)
    if w == n-2:break
    for j in range(1,nn):
        for i in range(1,nn):
            n_dp[i][j] += n_dp[i-1][j]
    dp = n_dp
if n == 1:print(1)
else:
    ans = 0
    for i in range(nn):
        ans += n_dp[i][i]
    else:print(ans%mod)
0