結果

問題 No.1512 作文
ユーザー tcltktcltk
提出日時 2021-06-25 16:27:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 97,008 KB
最終ジャッジ日時 2024-06-25 07:42:07
合計ジャッジ時間 8,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 118 ms
86,664 KB
testcase_03 AC 129 ms
86,872 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 128 ms
86,484 KB
testcase_10 AC 119 ms
86,860 KB
testcase_11 AC 125 ms
87,012 KB
testcase_12 AC 118 ms
86,932 KB
testcase_13 AC 126 ms
86,844 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 128 ms
86,784 KB
testcase_22 AC 127 ms
86,912 KB
testcase_23 AC 127 ms
86,640 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 131 ms
86,912 KB
testcase_27 AC 127 ms
86,988 KB
testcase_28 AC 126 ms
86,656 KB
testcase_29 AC 127 ms
86,900 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 130 ms
87,168 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 139 ms
88,960 KB
testcase_36 AC 136 ms
89,216 KB
testcase_37 AC 136 ms
88,720 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 263 ms
96,924 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 = """3
# ab
# cd
# f
# """
# sys.stdin = io.StringIO(_INPUT)


N = int(input())
S = [input()for _ in range(N)]

dp = [0] * 26
for s in S:
    
    ok = True
    for i in range(len(s)-1):
        if s[i] > s[i+1]:
            ok = False
            break
    if not ok:
        continue

    dp1 = [0] * 26
    k1 = ord(s[0])-ord('a')
    k2 = ord(s[-1])-ord('a')
    for k in range(k1+1):
        dp1[k] = max(dp1[k], dp[k])
        dp1[k2] = max(dp1[k2], dp[k]+len(s))
    dp = dp1

ans = max(dp)
print(ans)
0