結果

問題 No.1512 作文
ユーザー otsunekootsuneko
提出日時 2021-05-22 00:12:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 172,156 KB
最終ジャッジ日時 2024-10-10 10:24:26
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,316 KB
testcase_01 AC 38 ms
52,880 KB
testcase_02 AC 37 ms
53,184 KB
testcase_03 AC 38 ms
53,256 KB
testcase_04 AC 425 ms
124,148 KB
testcase_05 AC 423 ms
124,292 KB
testcase_06 AC 427 ms
125,516 KB
testcase_07 AC 421 ms
125,724 KB
testcase_08 AC 426 ms
124,104 KB
testcase_09 AC 40 ms
54,440 KB
testcase_10 AC 40 ms
54,384 KB
testcase_11 AC 38 ms
55,184 KB
testcase_12 AC 38 ms
54,096 KB
testcase_13 AC 39 ms
55,452 KB
testcase_14 AC 82 ms
76,756 KB
testcase_15 AC 82 ms
77,000 KB
testcase_16 AC 83 ms
76,776 KB
testcase_17 AC 82 ms
76,716 KB
testcase_18 AC 82 ms
76,724 KB
testcase_19 AC 90 ms
76,956 KB
testcase_20 AC 84 ms
76,608 KB
testcase_21 AC 39 ms
53,996 KB
testcase_22 AC 38 ms
53,596 KB
testcase_23 AC 38 ms
53,140 KB
testcase_24 AC 38 ms
53,752 KB
testcase_25 AC 38 ms
53,664 KB
testcase_26 AC 39 ms
52,704 KB
testcase_27 AC 37 ms
52,532 KB
testcase_28 AC 37 ms
53,256 KB
testcase_29 AC 38 ms
53,948 KB
testcase_30 AC 38 ms
53,700 KB
testcase_31 AC 42 ms
58,752 KB
testcase_32 AC 43 ms
59,400 KB
testcase_33 AC 42 ms
59,064 KB
testcase_34 AC 47 ms
62,136 KB
testcase_35 AC 47 ms
72,156 KB
testcase_36 AC 46 ms
72,436 KB
testcase_37 AC 45 ms
66,628 KB
testcase_38 AC 59 ms
75,612 KB
testcase_39 AC 58 ms
75,692 KB
testcase_40 AC 658 ms
172,156 KB
testcase_41 AC 369 ms
163,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
import sys
input = lambda: sys.stdin.readline().rstrip()
#INF = 10**18

N = int(input())
l = []
total = 0
for i in range(N):
    S = input()
    for i in range(len(S)-1):
        if S[i] > S[i+1]:
            break
    else:
        l.append([ord(S[0])-97,ord(S[-1])-97,len(S)])
l.sort(key=itemgetter(1,0))

dp = [[0]*26 for _ in range(len(l)+1)]

for i in range(len(l)):
    for j in range(26):
        if j >= l[i][1]:
            dp[i+1][j] = max(dp[i][l[i][0]] + l[i][2], dp[i][l[i][1]])
        else:
            dp[i+1][j] = dp[i][j]

print(dp[len(l)][25])
0