結果
問題 | No.1964 sum = length |
ユーザー | tassei903 |
提出日時 | 2022-06-03 21:40:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 735 ms / 2,000 ms |
コード長 | 750 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 77,556 KB |
最終ジャッジ日時 | 2024-09-21 02:32:15 |
合計ジャッジ時間 | 12,387 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### mod = 998244353 n = ni() from collections import defaultdict dp = defaultdict(int) dp[-1] = 1 for i in range(n): ndp = defaultdict(int) ndp,dp = dp,ndp for j in ndp: for k in range(1,n+10): nj = j + len(str(k))+1-k #print(j, nj) if abs(nj) > n+10: continue dp[nj] += ndp[j] dp[nj] %= mod print(dp[0])