結果

問題 No.1512 作文
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-21 21:53:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,100 KB
最終ジャッジ日時 2024-10-10 08:26:43
合計ジャッジ時間 5,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,140 KB
testcase_01 AC 38 ms
53,264 KB
testcase_02 AC 38 ms
53,204 KB
testcase_03 AC 37 ms
52,348 KB
testcase_04 AC 253 ms
87,116 KB
testcase_05 AC 252 ms
87,672 KB
testcase_06 AC 254 ms
87,412 KB
testcase_07 AC 242 ms
86,912 KB
testcase_08 AC 241 ms
86,844 KB
testcase_09 AC 39 ms
54,352 KB
testcase_10 AC 38 ms
53,564 KB
testcase_11 AC 40 ms
53,684 KB
testcase_12 AC 39 ms
53,616 KB
testcase_13 AC 39 ms
53,288 KB
testcase_14 AC 91 ms
76,708 KB
testcase_15 AC 97 ms
77,036 KB
testcase_16 AC 93 ms
76,828 KB
testcase_17 AC 96 ms
76,900 KB
testcase_18 AC 93 ms
76,872 KB
testcase_19 AC 92 ms
76,812 KB
testcase_20 AC 92 ms
76,944 KB
testcase_21 AC 40 ms
53,380 KB
testcase_22 AC 39 ms
52,200 KB
testcase_23 AC 41 ms
53,504 KB
testcase_24 AC 39 ms
53,872 KB
testcase_25 AC 39 ms
54,024 KB
testcase_26 AC 38 ms
52,732 KB
testcase_27 AC 37 ms
52,264 KB
testcase_28 AC 38 ms
52,888 KB
testcase_29 AC 39 ms
52,928 KB
testcase_30 AC 39 ms
53,432 KB
testcase_31 AC 42 ms
59,460 KB
testcase_32 AC 44 ms
59,008 KB
testcase_33 AC 42 ms
59,380 KB
testcase_34 AC 45 ms
61,376 KB
testcase_35 AC 55 ms
74,476 KB
testcase_36 AC 55 ms
74,924 KB
testcase_37 AC 54 ms
76,044 KB
testcase_38 AC 57 ms
75,372 KB
testcase_39 AC 59 ms
75,448 KB
testcase_40 AC 226 ms
99,100 KB
testcase_41 AC 210 ms
98,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
L = [[] for i in range(26)]
for i in range(n):
    S = input()
    l = [-1]
    check = True
    for s in S:
        now = ord(s)-ord("a")
        if now < l[-1]:
            check = False
            break
        l.append(now)
    if check == False:
        continue
    L[l[1]].append([l[-1],len(l)-1])

dp = [0]*26

for i in range(26):
    dp[i] = max(dp[i],dp[i-1])
    if L[i] == []:
        continue
    L[i].sort()
    for r,le in L[i]:
        dp[r] = max(dp[r],dp[i]+le)
print(dp[-1])


0