結果

問題 No.1512 作文
ユーザー U SU S
提出日時 2021-05-21 22:00:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 144,616 KB
最終ジャッジ日時 2024-10-10 08:41:44
合計ジャッジ時間 5,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,644 KB
testcase_01 AC 48 ms
61,940 KB
testcase_02 AC 47 ms
60,876 KB
testcase_03 AC 47 ms
60,600 KB
testcase_04 AC 289 ms
110,924 KB
testcase_05 AC 284 ms
111,180 KB
testcase_06 AC 287 ms
111,064 KB
testcase_07 AC 283 ms
111,432 KB
testcase_08 AC 286 ms
111,448 KB
testcase_09 AC 48 ms
61,748 KB
testcase_10 AC 49 ms
62,300 KB
testcase_11 AC 48 ms
62,816 KB
testcase_12 AC 54 ms
62,664 KB
testcase_13 AC 50 ms
62,264 KB
testcase_14 AC 113 ms
77,476 KB
testcase_15 AC 135 ms
78,208 KB
testcase_16 AC 115 ms
78,108 KB
testcase_17 AC 109 ms
77,128 KB
testcase_18 AC 111 ms
77,540 KB
testcase_19 AC 112 ms
77,400 KB
testcase_20 AC 110 ms
77,328 KB
testcase_21 AC 50 ms
61,928 KB
testcase_22 AC 47 ms
61,396 KB
testcase_23 AC 51 ms
62,088 KB
testcase_24 AC 51 ms
62,156 KB
testcase_25 AC 50 ms
61,840 KB
testcase_26 AC 47 ms
61,196 KB
testcase_27 AC 47 ms
61,752 KB
testcase_28 AC 48 ms
61,156 KB
testcase_29 AC 46 ms
61,252 KB
testcase_30 AC 47 ms
61,568 KB
testcase_31 AC 51 ms
62,808 KB
testcase_32 AC 51 ms
62,636 KB
testcase_33 AC 50 ms
63,300 KB
testcase_34 AC 59 ms
67,092 KB
testcase_35 AC 51 ms
63,364 KB
testcase_36 AC 52 ms
64,064 KB
testcase_37 AC 51 ms
62,536 KB
testcase_38 AC 57 ms
66,480 KB
testcase_39 AC 63 ms
68,932 KB
testcase_40 AC 428 ms
144,616 KB
testcase_41 AC 324 ms
138,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys
# input = sys.stdin.readline
def mp():return map(int,input().split())
def lmp():return list(map(int,input().split()))
import math
import bisect
from copy import deepcopy as dc
from itertools import accumulate
from collections import Counter, defaultdict, deque
def ceil(U,V):return (U+V-1)//V
def modf1(N,MOD):return (N-1)%MOD+1
inf = int(1e30)
mod = 998244353

n = int(input())
s = []
for i in range(n):
    si = input()
    for j in range(len(si)-1):
        if ord(si[j]) > ord(si[j+1]):
            break
    else:s.append(si)
s.sort()
dp = [[0]*26 for i in range(len(s)+1)]
for i in range(1,len(s)+1):
    tar = s[i-1]
    front = tar[0]
    bottom = tar[-1]
    for j in range(ord(front)-ord("a")+1):
        dp[i][ord(bottom)-ord("a")] = max(dp[i-1][j]+len(tar), dp[i][ord(bottom)-ord("a")])
    for j in range(26):
        dp[i][j] = max(dp[i - 1][j], dp[i][j])
print(max(dp[len(s)]))

0