結果
問題 |
No.1512 作文
|
ユーザー |
![]() |
提出日時 | 2021-05-22 06:38:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 534 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,648 KB |
最終ジャッジ日時 | 2024-10-10 10:44:36 |
合計ジャッジ時間 | 3,344 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 RE * 3 |
other | AC * 6 RE * 32 |
ソースコード
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(l) 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) print(max(dp.values()))