結果

問題 No.1512 作文
ユーザー ygd.ygd.
提出日時 2021-05-21 21:33:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,036 KB
最終ジャッジ日時 2024-10-10 07:58:35
合計ジャッジ時間 5,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(x):
    n = len(x)
    for i in range(n-1):
        if x[i] > x[i+1]:
            return False
    return True


n = int(input())
L = []
for i in range(n):
    s = str(input())
    if check(s):
        first = ord(s[0]) - 97
        last = ord(s[-1]) - 97
        L.append((first,last,len(s)))
L.sort()
#print(L)

dp = [0]*26
for first, last, length in L:
    dp[last] = max(dp[last], max(dp[:first+1]) + length)
#print(dp)
ans = max(dp)
print(ans)
0