結果

問題 No.1964 sum = length
ユーザー rlangevinrlangevin
提出日時 2023-10-11 20:55:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,481 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 269,552 KB
最終ジャッジ日時 2024-09-13 19:47:19
合計ジャッジ時間 46,918 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
81,900 KB
testcase_01 AC 88 ms
80,900 KB
testcase_02 AC 287 ms
93,164 KB
testcase_03 AC 87 ms
80,988 KB
testcase_04 AC 122 ms
81,752 KB
testcase_05 AC 138 ms
81,768 KB
testcase_06 AC 155 ms
87,896 KB
testcase_07 AC 165 ms
88,044 KB
testcase_08 AC 174 ms
87,772 KB
testcase_09 AC 184 ms
87,780 KB
testcase_10 AC 195 ms
87,776 KB
testcase_11 AC 203 ms
87,924 KB
testcase_12 AC 548 ms
119,164 KB
testcase_13 AC 749 ms
138,388 KB
testcase_14 AC 988 ms
158,808 KB
testcase_15 AC 1,104 ms
171,116 KB
testcase_16 AC 277 ms
92,916 KB
testcase_17 AC 615 ms
125,800 KB
testcase_18 AC 678 ms
131,828 KB
testcase_19 AC 478 ms
113,132 KB
testcase_20 AC 510 ms
119,280 KB
testcase_21 AC 266 ms
93,164 KB
testcase_22 TLE -
testcase_23 AC 1,975 ms
250,096 KB
testcase_24 AC 1,477 ms
204,648 KB
testcase_25 AC 1,612 ms
217,180 KB
testcase_26 TLE -
testcase_27 AC 1,774 ms
229,616 KB
testcase_28 AC 1,572 ms
210,784 KB
testcase_29 AC 1,898 ms
242,292 KB
testcase_30 AC 1,620 ms
216,948 KB
testcase_31 TLE -
testcase_32 AC 1,195 ms
177,776 KB
testcase_33 AC 1,167 ms
177,524 KB
testcase_34 AC 1,986 ms
250,096 KB
testcase_35 AC 1,340 ms
190,180 KB
testcase_36 AC 1,693 ms
223,464 KB
testcase_37 AC 1,878 ms
236,144 KB
testcase_38 TLE -
testcase_39 AC 1,575 ms
210,932 KB
testcase_40 AC 1,625 ms
217,176 KB
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ans)
# print(pre)
0