結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
86,876 KB
testcase_01 AC 123 ms
87,096 KB
testcase_02 AC 122 ms
86,644 KB
testcase_03 AC 120 ms
86,864 KB
testcase_04 AC 448 ms
119,040 KB
testcase_05 AC 436 ms
119,168 KB
testcase_06 AC 443 ms
119,360 KB
testcase_07 AC 439 ms
119,008 KB
testcase_08 AC 438 ms
119,168 KB
testcase_09 AC 120 ms
86,656 KB
testcase_10 AC 120 ms
86,848 KB
testcase_11 AC 122 ms
86,912 KB
testcase_12 AC 120 ms
86,656 KB
testcase_13 AC 120 ms
86,820 KB
testcase_14 AC 173 ms
91,080 KB
testcase_15 AC 162 ms
90,024 KB
testcase_16 AC 163 ms
89,936 KB
testcase_17 AC 160 ms
89,856 KB
testcase_18 AC 161 ms
90,088 KB
testcase_19 AC 163 ms
90,240 KB
testcase_20 AC 162 ms
89,684 KB
testcase_21 AC 126 ms
86,852 KB
testcase_22 AC 123 ms
86,656 KB
testcase_23 AC 123 ms
86,920 KB
testcase_24 AC 121 ms
86,952 KB
testcase_25 AC 119 ms
86,784 KB
testcase_26 AC 120 ms
86,960 KB
testcase_27 AC 121 ms
86,812 KB
testcase_28 AC 120 ms
86,528 KB
testcase_29 AC 121 ms
86,660 KB
testcase_30 AC 121 ms
86,784 KB
testcase_31 AC 122 ms
87,232 KB
testcase_32 AC 121 ms
87,420 KB
testcase_33 AC 122 ms
87,040 KB
testcase_34 AC 133 ms
89,300 KB
testcase_35 AC 129 ms
89,104 KB
testcase_36 AC 131 ms
89,216 KB
testcase_37 AC 130 ms
89,196 KB
testcase_38 AC 136 ms
89,472 KB
testcase_39 AC 137 ms
89,216 KB
testcase_40 AC 580 ms
132,928 KB
testcase_41 AC 338 ms
137,472 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:

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

ans = max(dp)
print(ans)
0