結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,120 KB
testcase_01 AC 41 ms
59,976 KB
testcase_02 AC 86 ms
77,396 KB
testcase_03 AC 45 ms
58,336 KB
testcase_04 AC 48 ms
61,956 KB
testcase_05 AC 53 ms
63,464 KB
testcase_06 AC 60 ms
66,976 KB
testcase_07 AC 63 ms
68,904 KB
testcase_08 AC 64 ms
69,116 KB
testcase_09 AC 67 ms
70,276 KB
testcase_10 AC 67 ms
69,732 KB
testcase_11 AC 70 ms
71,564 KB
testcase_12 AC 129 ms
77,392 KB
testcase_13 AC 187 ms
78,356 KB
testcase_14 AC 297 ms
79,532 KB
testcase_15 AC 371 ms
80,164 KB
testcase_16 AC 86 ms
77,052 KB
testcase_17 AC 145 ms
77,408 KB
testcase_18 AC 163 ms
77,920 KB
testcase_19 AC 115 ms
77,508 KB
testcase_20 AC 124 ms
77,576 KB
testcase_21 AC 89 ms
77,080 KB
testcase_22 AC 1,838 ms
121,180 KB
testcase_23 AC 1,716 ms
118,100 KB
testcase_24 AC 759 ms
88,564 KB
testcase_25 AC 952 ms
95,064 KB
testcase_26 TLE -
testcase_27 AC 1,263 ms
102,012 KB
testcase_28 AC 878 ms
92,020 KB
testcase_29 AC 1,566 ms
111,640 KB
testcase_30 AC 969 ms
94,324 KB
testcase_31 TLE -
testcase_32 AC 450 ms
82,288 KB
testcase_33 AC 426 ms
82,048 KB
testcase_34 AC 1,772 ms
117,184 KB
testcase_35 AC 580 ms
84,784 KB
testcase_36 AC 1,080 ms
97,384 KB
testcase_37 AC 1,492 ms
108,496 KB
testcase_38 TLE -
testcase_39 AC 904 ms
91,428 KB
testcase_40 AC 980 ms
95,240 KB
testcase_41 AC 1,839 ms
123,900 KB
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
nn = 2 * n + 80
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