結果

問題 No.1964 sum = length
ユーザー vwxyzvwxyz
提出日時 2023-04-22 07:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-11-06 22:17:24
合計ジャッジ時間 10,567 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
89,856 KB
testcase_01 AC 144 ms
89,728 KB
testcase_02 AC 155 ms
90,624 KB
testcase_03 AC 144 ms
89,856 KB
testcase_04 AC 145 ms
89,640 KB
testcase_05 AC 159 ms
89,812 KB
testcase_06 AC 148 ms
89,984 KB
testcase_07 AC 143 ms
89,836 KB
testcase_08 AC 151 ms
89,728 KB
testcase_09 AC 151 ms
89,856 KB
testcase_10 AC 150 ms
89,728 KB
testcase_11 AC 158 ms
90,624 KB
testcase_12 AC 163 ms
90,624 KB
testcase_13 AC 166 ms
90,624 KB
testcase_14 AC 171 ms
91,008 KB
testcase_15 AC 174 ms
90,752 KB
testcase_16 AC 147 ms
90,624 KB
testcase_17 AC 154 ms
90,624 KB
testcase_18 AC 156 ms
90,496 KB
testcase_19 AC 156 ms
90,496 KB
testcase_20 AC 156 ms
90,604 KB
testcase_21 AC 151 ms
90,496 KB
testcase_22 AC 296 ms
91,008 KB
testcase_23 AC 280 ms
90,968 KB
testcase_24 AC 204 ms
90,864 KB
testcase_25 AC 227 ms
90,872 KB
testcase_26 AC 307 ms
90,752 KB
testcase_27 AC 252 ms
90,880 KB
testcase_28 AC 228 ms
90,880 KB
testcase_29 AC 264 ms
90,624 KB
testcase_30 AC 227 ms
90,752 KB
testcase_31 AC 321 ms
90,752 KB
testcase_32 AC 188 ms
90,752 KB
testcase_33 AC 187 ms
90,752 KB
testcase_34 AC 286 ms
90,880 KB
testcase_35 AC 191 ms
90,752 KB
testcase_36 AC 243 ms
90,752 KB
testcase_37 AC 273 ms
90,752 KB
testcase_38 AC 332 ms
90,880 KB
testcase_39 AC 223 ms
90,772 KB
testcase_40 AC 226 ms
91,008 KB
testcase_41 AC 298 ms
90,752 KB
testcase_42 AC 343 ms
90,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import functools
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N=int(readline())
mod=998244353
dp=[0]*N
dp[0]=1
for n in range(N):
    prev=dp
    dp=[0]*N
    for s in range(N):
        for a in range(1,N+5):
            a-=len(str(a))
            if s+a<N:
                dp[s+a]+=prev[s]
                dp[s+a]%=mod
ans=dp[N-1]
print(ans)
0