結果

問題 No.1964 sum = length
ユーザー titiatitia
提出日時 2022-06-07 02:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-21 04:49:00
合計ジャッジ時間 13,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
65,884 KB
testcase_01 AC 50 ms
53,760 KB
testcase_02 AC 105 ms
76,288 KB
testcase_03 AC 40 ms
53,248 KB
testcase_04 AC 53 ms
65,792 KB
testcase_05 AC 63 ms
70,144 KB
testcase_06 AC 67 ms
73,688 KB
testcase_07 AC 76 ms
76,288 KB
testcase_08 AC 77 ms
76,592 KB
testcase_09 AC 78 ms
76,160 KB
testcase_10 AC 82 ms
76,664 KB
testcase_11 AC 86 ms
76,032 KB
testcase_12 AC 188 ms
76,672 KB
testcase_13 AC 205 ms
76,416 KB
testcase_14 AC 269 ms
76,544 KB
testcase_15 AC 288 ms
76,288 KB
testcase_16 AC 106 ms
76,160 KB
testcase_17 AC 186 ms
76,416 KB
testcase_18 AC 197 ms
76,416 KB
testcase_19 AC 149 ms
76,488 KB
testcase_20 AC 159 ms
76,160 KB
testcase_21 AC 97 ms
76,416 KB
testcase_22 AC 504 ms
76,800 KB
testcase_23 AC 495 ms
76,544 KB
testcase_24 AC 366 ms
76,416 KB
testcase_25 AC 405 ms
76,544 KB
testcase_26 AC 520 ms
76,928 KB
testcase_27 AC 435 ms
76,544 KB
testcase_28 AC 393 ms
76,672 KB
testcase_29 AC 467 ms
76,868 KB
testcase_30 AC 416 ms
76,544 KB
testcase_31 AC 519 ms
76,416 KB
testcase_32 AC 317 ms
76,412 KB
testcase_33 AC 307 ms
76,160 KB
testcase_34 AC 495 ms
76,672 KB
testcase_35 AC 341 ms
76,544 KB
testcase_36 AC 428 ms
76,544 KB
testcase_37 AC 465 ms
76,416 KB
testcase_38 AC 525 ms
76,544 KB
testcase_39 AC 406 ms
76,544 KB
testcase_40 AC 422 ms
76,544 KB
testcase_41 AC 515 ms
76,544 KB
testcase_42 AC 561 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

mod=998244353

n=int(input())

DP={0:1}
# 文字列としての長さ, sum

for i in range(n):
    NDP=Counter()

    for j in DP:
        for k in range(1,411):
            l=len(str(k))

            x=k-l

            if j+x<210:
                NDP[j+x]+=DP[j]
                NDP[j+x]%=mod

    DP=NDP
            
print(DP[n-1])
0