結果

問題 No.1512 作文
ユーザー tcltktcltk
提出日時 2021-06-25 16:41:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 129,792 KB
最終ジャッジ日時 2024-06-25 07:42:42
合計ジャッジ時間 9,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 137 ms
86,656 KB
testcase_02 AC 137 ms
86,656 KB
testcase_03 AC 138 ms
86,784 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 139 ms
86,592 KB
testcase_10 AC 139 ms
86,912 KB
testcase_11 AC 141 ms
86,656 KB
testcase_12 AC 141 ms
86,656 KB
testcase_13 AC 139 ms
86,656 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 138 ms
86,912 KB
testcase_22 AC 140 ms
86,912 KB
testcase_23 AC 140 ms
86,656 KB
testcase_24 AC 140 ms
86,528 KB
testcase_25 WA -
testcase_26 AC 140 ms
86,912 KB
testcase_27 AC 139 ms
86,784 KB
testcase_28 AC 140 ms
86,656 KB
testcase_29 AC 140 ms
87,040 KB
testcase_30 AC 137 ms
86,912 KB
testcase_31 AC 142 ms
86,912 KB
testcase_32 AC 143 ms
86,912 KB
testcase_33 AC 145 ms
87,296 KB
testcase_34 AC 154 ms
89,216 KB
testcase_35 AC 152 ms
88,832 KB
testcase_36 AC 154 ms
89,216 KB
testcase_37 AC 151 ms
88,704 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 324 ms
128,872 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