結果

問題 No.1964 sum = length
ユーザー tktk_snsntktk_snsn
提出日時 2022-06-03 23:10:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 78,880 KB
最終ジャッジ日時 2024-09-21 03:15:29
合計ジャッジ時間 11,546 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 44 ms
54,044 KB
testcase_02 AC 66 ms
69,704 KB
testcase_03 AC 38 ms
54,904 KB
testcase_04 AC 38 ms
54,792 KB
testcase_05 AC 41 ms
54,372 KB
testcase_06 AC 40 ms
54,120 KB
testcase_07 AC 39 ms
56,136 KB
testcase_08 AC 39 ms
55,200 KB
testcase_09 AC 46 ms
64,096 KB
testcase_10 AC 47 ms
63,776 KB
testcase_11 AC 51 ms
65,784 KB
testcase_12 AC 80 ms
76,628 KB
testcase_13 AC 97 ms
76,488 KB
testcase_14 AC 139 ms
76,508 KB
testcase_15 AC 191 ms
76,664 KB
testcase_16 AC 61 ms
68,756 KB
testcase_17 AC 86 ms
76,432 KB
testcase_18 AC 88 ms
76,908 KB
testcase_19 AC 75 ms
76,444 KB
testcase_20 AC 75 ms
76,348 KB
testcase_21 AC 57 ms
68,064 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
mod = 998244353
U = 211


def id(x, y):
    return x * U + y


def parse(x):
    a = x // U
    return a, x - U * a


def dec(x):
    if x < 10:
        return 1
    if x < 100:
        return 2
    return 3


"""
sum + 1 == len

1: sum += 1, len += 2
2: sum += 2, len += 2
x: sum += x, len += dec(x) + 1
"""


n = int(input())
dp = defaultdict(int)
dp[0] = 1
for i in range(n):
    ok = n - i - 1 + 10
    ndp = defaultdict(int)
    for k, v in dp.items():
        s, l = parse(k)
        for a in range(1, U):
            ns = s + a
            nl = l + dec(a) + 1
            if ns >= U or nl >= U:
                break
            if ns - nl > ok:
                break
            nk = id(ns, nl)
            ndp[nk] += v
            ndp[nk] %= mod
    dp = ndp

ans = 0
for k, v in dp.items():
    s, l = parse(k)
    if s + 1 == l:
        ans += v
        ans %= mod
print(ans)
0