結果

問題 No.1964 sum = length
ユーザー KazunKazun
提出日時 2022-06-03 22:11:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 65,592 KB
最終ジャッジ日時 2024-09-21 02:47:07
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
59,812 KB
testcase_01 AC 39 ms
52,728 KB
testcase_02 AC 45 ms
60,200 KB
testcase_03 AC 38 ms
53,264 KB
testcase_04 AC 43 ms
59,660 KB
testcase_05 AC 42 ms
59,908 KB
testcase_06 AC 43 ms
59,600 KB
testcase_07 AC 43 ms
59,400 KB
testcase_08 AC 43 ms
60,044 KB
testcase_09 AC 44 ms
60,688 KB
testcase_10 AC 44 ms
59,604 KB
testcase_11 AC 44 ms
61,692 KB
testcase_12 AC 47 ms
62,404 KB
testcase_13 AC 54 ms
62,584 KB
testcase_14 AC 56 ms
63,092 KB
testcase_15 AC 58 ms
62,068 KB
testcase_16 AC 45 ms
60,656 KB
testcase_17 AC 49 ms
62,148 KB
testcase_18 AC 48 ms
62,632 KB
testcase_19 AC 47 ms
62,012 KB
testcase_20 AC 47 ms
62,008 KB
testcase_21 AC 45 ms
61,028 KB
testcase_22 AC 114 ms
64,036 KB
testcase_23 AC 110 ms
65,332 KB
testcase_24 AC 74 ms
62,916 KB
testcase_25 AC 81 ms
63,000 KB
testcase_26 AC 122 ms
64,532 KB
testcase_27 AC 92 ms
63,348 KB
testcase_28 AC 79 ms
63,168 KB
testcase_29 AC 101 ms
64,164 KB
testcase_30 AC 81 ms
63,832 KB
testcase_31 AC 120 ms
64,236 KB
testcase_32 AC 61 ms
62,100 KB
testcase_33 AC 63 ms
63,732 KB
testcase_34 AC 109 ms
64,136 KB
testcase_35 AC 68 ms
62,784 KB
testcase_36 AC 86 ms
64,516 KB
testcase_37 AC 100 ms
64,800 KB
testcase_38 AC 128 ms
65,264 KB
testcase_39 AC 80 ms
63,060 KB
testcase_40 AC 83 ms
64,152 KB
testcase_41 AC 116 ms
65,052 KB
testcase_42 AC 133 ms
65,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

Mod=998244353

K=max(30,N+20)
d=[0]*K
for i in range(K):
    d[i]=len(str(i))

DP=[[0]*K for _ in range(N+1)]
DP[0][0]=1

for i in range(1,N+1):
    for j in range(K):
        for k in range(1,K):
            if j+k-d[k]<K:
                DP[i][j+k-d[k]]+=DP[i-1][j]
    for j in range(1,K):
        DP[i][j]%=Mod

print(DP[N][N-1])
0