結果

問題 No.1964 sum = length
ユーザー rlangevinrlangevin
提出日時 2023-10-11 20:59:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,677 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 259,128 KB
最終ジャッジ日時 2024-09-13 19:52:09
合計ジャッジ時間 38,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
84,916 KB
testcase_01 AC 97 ms
80,768 KB
testcase_02 AC 277 ms
132,532 KB
testcase_03 AC 97 ms
81,280 KB
testcase_04 AC 137 ms
84,784 KB
testcase_05 AC 149 ms
87,864 KB
testcase_06 AC 159 ms
91,184 KB
testcase_07 AC 171 ms
94,256 KB
testcase_08 AC 178 ms
97,340 KB
testcase_09 AC 186 ms
100,656 KB
testcase_10 AC 196 ms
103,852 KB
testcase_11 AC 205 ms
107,060 KB
testcase_12 AC 493 ms
211,628 KB
testcase_13 AC 661 ms
258,992 KB
testcase_14 AC 844 ms
258,864 KB
testcase_15 AC 937 ms
258,860 KB
testcase_16 AC 264 ms
129,248 KB
testcase_17 AC 540 ms
230,444 KB
testcase_18 AC 595 ms
249,396 KB
testcase_19 AC 428 ms
189,372 KB
testcase_20 AC 454 ms
198,708 KB
testcase_21 AC 253 ms
126,388 KB
testcase_22 AC 1,568 ms
258,868 KB
testcase_23 AC 1,531 ms
258,996 KB
testcase_24 AC 1,208 ms
258,864 KB
testcase_25 AC 1,296 ms
259,124 KB
testcase_26 AC 1,605 ms
258,860 KB
testcase_27 AC 1,399 ms
259,120 KB
testcase_28 AC 1,271 ms
258,872 KB
testcase_29 AC 1,475 ms
258,860 KB
testcase_30 AC 1,310 ms
258,856 KB
testcase_31 AC 1,612 ms
258,856 KB
testcase_32 AC 1,028 ms
258,996 KB
testcase_33 AC 998 ms
258,992 KB
testcase_34 AC 1,533 ms
258,868 KB
testcase_35 AC 1,118 ms
258,856 KB
testcase_36 AC 1,336 ms
258,868 KB
testcase_37 AC 1,470 ms
258,860 KB
testcase_38 AC 1,647 ms
259,004 KB
testcase_39 AC 1,278 ms
258,836 KB
testcase_40 AC 1,307 ms
258,868 KB
testcase_41 AC 1,578 ms
259,128 KB
testcase_42 AC 1,677 ms
259,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = 450
mod = 998244353
pre = [0] * (M * M)
pre[0] = 1
def f(a, b):
    return a * M + b
    
for _ in range(N):
    dp = [0] * (M * M)
    Ac = [0] * (M * M)
    for i in range(M):
        for j in range(M):
            p = pre[f(i, j)]
            if i + 1 <= M - 1 and j + 2 <= M - 1: 
                dp[f(i + 1,j + 2)] += p
                dp[f(i + 1,j + 2)] %= mod
            if i + 10 <= M - 1 and j + 2 <= M - 1: 
                dp[f(i + 10,j + 2)] -= p
                dp[f(i + 10,j + 2)] %= mod
            if i + 10 <= M - 1 and j + 3 <= M - 1: 
                dp[f(i + 10,j + 3)] += p
                dp[f(i + 10,j + 3)] %= mod
            if i + 100 <= M - 1 and j + 3 <= M - 1: 
                dp[f(i + 100,j + 3)] -= p
                dp[f(i + 100,j + 3)] %= mod
            if i + 100 <= M - 1 and j + 4 <= M - 1: 
                dp[f(i + 100,j + 4)] += p
                dp[f(i + 100,j + 4)] %= mod
            # for n in range(1, M):
            #     num = len(str(n))
            #     if i + n <= M - 1 and j + num + 1 <= M - 1: 
            #         dp[f(i + n,j + num + 1] += p
            #         dp[f(i + n,j + num + 1] %= mod
    for i in range(1, M):
        for j in range(M):
            Ac[f(i,j)] = (Ac[f(i-1,j)] + dp[f(i,j)]) % mod
            
    Ac, pre = pre, Ac

ans = 0
for i in range(M - 1):
    ans += pre[f(i,i+1)]
    ans %= mod                

print(ans)
0