結果
問題 |
No.1512 作文
|
ユーザー |
![]() |
提出日時 | 2021-05-22 06:07:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 268 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 15,600 KB |
最終ジャッジ日時 | 2024-10-10 10:42:46 |
合計ジャッジ時間 | 14,681 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 37 TLE * 1 |
ソースコード
from sys import stdin readline = stdin.readline az = 'abcdefghijklmnopqrstuvwxyz' N = int(readline()) S = [readline()[:-1] for _ in range(N)] S.sort() dp = {chr(ord('a') - 1): 0} for l in S: if ''.join(sorted(l)) != l: continue start = l[0] last = l[-1] 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] + len(l)) dp[last] = max(dp[last], len(l)) print(max(dp.values()))