結果

問題 No.1964 sum = length
ユーザー lilictakalilictaka
提出日時 2022-06-04 01:50:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,673 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 77,144 KB
最終ジャッジ日時 2024-09-21 03:33:28
合計ジャッジ時間 22,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,076 KB
testcase_01 AC 39 ms
52,276 KB
testcase_02 AC 52 ms
66,628 KB
testcase_03 AC 36 ms
53,180 KB
testcase_04 AC 35 ms
53,088 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 AC 34 ms
52,976 KB
testcase_07 AC 35 ms
53,092 KB
testcase_08 AC 34 ms
53,296 KB
testcase_09 AC 42 ms
60,760 KB
testcase_10 AC 44 ms
60,892 KB
testcase_11 AC 46 ms
61,716 KB
testcase_12 AC 68 ms
75,828 KB
testcase_13 AC 104 ms
76,024 KB
testcase_14 AC 171 ms
76,048 KB
testcase_15 AC 227 ms
75,652 KB
testcase_16 AC 47 ms
63,920 KB
testcase_17 AC 80 ms
75,860 KB
testcase_18 AC 88 ms
76,360 KB
testcase_19 AC 66 ms
75,880 KB
testcase_20 AC 65 ms
75,956 KB
testcase_21 AC 44 ms
64,204 KB
testcase_22 AC 1,297 ms
76,932 KB
testcase_23 AC 1,209 ms
76,564 KB
testcase_24 AC 503 ms
76,168 KB
testcase_25 AC 654 ms
76,460 KB
testcase_26 AC 1,432 ms
76,400 KB
testcase_27 AC 873 ms
76,392 KB
testcase_28 AC 605 ms
76,080 KB
testcase_29 AC 1,052 ms
76,456 KB
testcase_30 AC 651 ms
76,292 KB
testcase_31 AC 1,436 ms
76,700 KB
testcase_32 AC 288 ms
75,908 KB
testcase_33 AC 268 ms
75,792 KB
testcase_34 AC 1,169 ms
76,352 KB
testcase_35 AC 384 ms
76,164 KB
testcase_36 AC 732 ms
76,476 KB
testcase_37 AC 1,002 ms
76,208 KB
testcase_38 AC 1,581 ms
77,144 KB
testcase_39 AC 610 ms
76,248 KB
testcase_40 AC 689 ms
76,164 KB
testcase_41 AC 1,350 ms
76,396 KB
testcase_42 AC 1,673 ms
76,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [0] * (2 * n)
dp[0] = 1
mod = 998244353
for i in range(n):
    nx = [0] * (2 * n)
    for s in range(2*n):
        for a in range(1,2*n):
            b = a -(len(list(str(a))) -1)
            if s + b <= 2 * n -1:
                nx[s + b]  += dp[s]
                nx[s+b] %= mod
    dp = nx
print(dp[-1])
0