結果
| 問題 | 
                            No.1512 作文
                             | 
                    
| コンテスト | |
| ユーザー | 
                             c-yan
                         | 
                    
| 提出日時 | 2021-05-22 06:44:01 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 502 bytes | 
| コンパイル時間 | 410 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 16,640 KB | 
| 最終ジャッジ日時 | 2024-10-10 10:45:33 | 
| 合計ジャッジ時間 | 13,320 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 2 | 
| other | AC * 28 WA * 9 TLE * 1 | 
ソースコード
from sys import stdin
readline = stdin.readline
az = 'abcdefghijklmnopqrstuvwxyz'
N = int(readline())
S = [readline()[:-1] for _ in range(N)]
dp = {chr(ord('a') - 1): 0}
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)
print(max(dp.values()))
            
            
            
        
            
c-yan