結果

問題 No.1512 作文
ユーザー tcltktcltk
提出日時 2021-06-25 16:41:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 137,088 KB
最終ジャッジ日時 2024-06-25 07:42:32
合計ジャッジ時間 10,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
86,912 KB
testcase_01 AC 138 ms
86,528 KB
testcase_02 AC 140 ms
86,912 KB
testcase_03 AC 139 ms
86,528 KB
testcase_04 AC 486 ms
118,912 KB
testcase_05 AC 482 ms
118,912 KB
testcase_06 AC 487 ms
119,552 KB
testcase_07 AC 484 ms
119,168 KB
testcase_08 AC 491 ms
119,424 KB
testcase_09 AC 143 ms
86,784 KB
testcase_10 AC 141 ms
86,912 KB
testcase_11 AC 141 ms
86,528 KB
testcase_12 AC 144 ms
86,912 KB
testcase_13 AC 140 ms
86,784 KB
testcase_14 AC 196 ms
90,880 KB
testcase_15 AC 183 ms
89,856 KB
testcase_16 AC 186 ms
89,728 KB
testcase_17 AC 185 ms
89,728 KB
testcase_18 AC 190 ms
90,240 KB
testcase_19 AC 186 ms
89,856 KB
testcase_20 AC 181 ms
89,856 KB
testcase_21 AC 137 ms
86,528 KB
testcase_22 AC 139 ms
86,528 KB
testcase_23 AC 139 ms
86,656 KB
testcase_24 AC 138 ms
87,040 KB
testcase_25 AC 143 ms
86,912 KB
testcase_26 AC 139 ms
86,528 KB
testcase_27 AC 138 ms
86,528 KB
testcase_28 AC 138 ms
86,528 KB
testcase_29 AC 141 ms
86,528 KB
testcase_30 AC 139 ms
86,912 KB
testcase_31 AC 140 ms
87,296 KB
testcase_32 AC 141 ms
87,040 KB
testcase_33 AC 139 ms
87,168 KB
testcase_34 AC 152 ms
89,216 KB
testcase_35 AC 151 ms
89,216 KB
testcase_36 AC 151 ms
89,344 KB
testcase_37 AC 148 ms
88,960 KB
testcase_38 AC 157 ms
89,344 KB
testcase_39 AC 157 ms
89,344 KB
testcase_40 AC 638 ms
133,172 KB
testcase_41 AC 374 ms
137,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """4
# abc
# ab
# bbccdd
# de
# """
# sys.stdin = io.StringIO(_INPUT)


N = int(input())
S = [input() for _ in range(N)]
L = []
for s in S:
    ok = True
    for i in range(len(s)-1):
        if s[i] > s[i+1]:
            ok = False
            break
    if ok:
        L.append((ord(s[0])-ord('a'), ord(s[-1])-ord('a'), len(s)))
L.sort(key=lambda x: (x[0], x[1], -x[2]))

dp = [0] * 26
for k1, k2, l in L:

    dp1 = [0] * 26
    for k in range(26):
        dp1[k] = max(dp1[k], dp[k])
        if k <= k1:
            dp1[k2] = max(dp1[k2], dp[k]+l)
    dp = dp1

ans = max(dp)
print(ans)
0