結果
問題 | No.1964 sum = length |
ユーザー | sotanishy |
提出日時 | 2022-06-03 21:28:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 294 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 82,644 KB |
実行使用メモリ | 67,192 KB |
最終ジャッジ日時 | 2024-09-21 02:26:52 |
合計ジャッジ時間 | 3,472 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
import sys input = sys.stdin.readline mod = 998244353 n = int(input()) dp = [0] * n dp[0] = 1 for _ in range(n): ndp = [0] * n for j in range(1, n+10): x = j - len(str(j)) for k in range(n-x): ndp[x+k] = (ndp[x+k] + dp[k]) % mod dp = ndp print(dp[n-1])