結果
| 問題 |
No.1512 作文
|
| コンテスト | |
| ユーザー |
c-yan
|
| 提出日時 | 2021-05-22 06:51:50 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 478 bytes |
| コンパイル時間 | 191 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 16,516 KB |
| 最終ジャッジ日時 | 2024-10-10 10:47:12 |
| 合計ジャッジ時間 | 13,382 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 23 WA * 14 TLE * 1 |
ソースコード
from sys import stdin
readline = stdin.readline
az = 'abcdefghijklmnopqrstuvwxyz'
N = int(readline())
S = [readline()[:-1] for _ in range(N)]
dp = {'a': 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 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