結果

問題 No.1512 作文
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-02 13:03:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 181,888 KB
最終ジャッジ日時 2024-09-21 01:56:27
合計ジャッジ時間 7,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,528 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 463 ms
129,936 KB
testcase_05 AC 470 ms
129,448 KB
testcase_06 AC 463 ms
129,584 KB
testcase_07 AC 460 ms
129,560 KB
testcase_08 AC 480 ms
130,024 KB
testcase_09 AC 56 ms
73,600 KB
testcase_10 AC 54 ms
74,704 KB
testcase_11 AC 54 ms
73,728 KB
testcase_12 AC 54 ms
75,136 KB
testcase_13 AC 53 ms
74,496 KB
testcase_14 AC 160 ms
77,884 KB
testcase_15 AC 131 ms
77,452 KB
testcase_16 AC 142 ms
77,228 KB
testcase_17 AC 139 ms
77,116 KB
testcase_18 AC 147 ms
77,684 KB
testcase_19 AC 139 ms
77,056 KB
testcase_20 AC 149 ms
77,968 KB
testcase_21 AC 43 ms
60,160 KB
testcase_22 AC 42 ms
58,496 KB
testcase_23 AC 44 ms
60,288 KB
testcase_24 AC 44 ms
60,544 KB
testcase_25 AC 43 ms
60,160 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 37 ms
52,224 KB
testcase_30 AC 36 ms
52,352 KB
testcase_31 AC 44 ms
59,392 KB
testcase_32 AC 44 ms
60,544 KB
testcase_33 AC 44 ms
59,136 KB
testcase_34 AC 56 ms
64,896 KB
testcase_35 AC 60 ms
87,168 KB
testcase_36 AC 59 ms
87,552 KB
testcase_37 AC 55 ms
76,416 KB
testcase_38 AC 67 ms
76,672 KB
testcase_39 AC 71 ms
76,928 KB
testcase_40 AC 655 ms
181,212 KB
testcase_41 AC 413 ms
181,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
lis=[]
ch='abcdefghijklmnopqrstuvwxyz'
for _ in range(n):
    s=input()
    tmp=[]
    for i in range(len(s)):
        tmp.append(ch.index(s[i]))
    f=True
    for i in range(len(s)-1):
        if s[i]>s[i+1]:
            f=False
            break
    if f:
        lis.append(tmp)
if len(lis)==0:
    exit(print(0))
L=[]
for t in lis:
    L.append((t[0],t[-1],len(t)))
L.sort()
N=len(L)
dp=[[0]*26 for _ in range(N+1)]
for i in range(N):
    l,r,d=L[i][0],L[i][1],L[i][2]
    for k in range(l+1):
        dp[i+1][r]=max(dp[i][r],dp[i][k]+d,dp[i+1][r])
    for j in range(26):
        dp[i+1][j]=max(dp[i+1][j],dp[i][j])
print(max(dp[-1]))
0