結果

問題 No.1512 作文
ユーザー c-yan
提出日時 2021-05-22 06:45:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 554 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,772 KB
最終ジャッジ日時 2024-10-10 10:46:02
合計ジャッジ時間 13,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 37 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

az = 'abcdefghijklmnopqrstuvwxyz'

N = int(readline())
S = [readline()[:-1] for _ in range(N)]

dp = {}
for s in sorted(S):
    if ''.join(sorted(s)) != s:
        continue
    start = s[0]
    last = s[-1]
    l = len(s)
    dp.setdefault(last, 0)
    for c in reversed(az):
        if c not in dp:
            continue
        if start < c:
            continue
        dp[last] = max(dp[last], dp[c] + l)
    dp[last] = max(dp[last], l)
if len(dp) == 0:
    print(0)
else:
    print(max(dp.values()))
0