結果

問題 No.1512 作文
ユーザー c-yanc-yan
提出日時 2021-05-22 06:37:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 86,816 KB
最終ジャッジ日時 2024-10-10 10:44:28
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,372 KB
testcase_01 AC 37 ms
53,124 KB
testcase_02 AC 41 ms
52,820 KB
testcase_03 AC 38 ms
53,100 KB
testcase_04 AC 375 ms
83,368 KB
testcase_05 AC 369 ms
84,344 KB
testcase_06 AC 378 ms
83,504 KB
testcase_07 AC 364 ms
83,776 KB
testcase_08 AC 371 ms
83,880 KB
testcase_09 AC 73 ms
65,204 KB
testcase_10 AC 76 ms
64,872 KB
testcase_11 AC 74 ms
65,300 KB
testcase_12 AC 80 ms
64,928 KB
testcase_13 AC 74 ms
65,268 KB
testcase_14 AC 103 ms
77,336 KB
testcase_15 AC 102 ms
77,328 KB
testcase_16 AC 103 ms
76,896 KB
testcase_17 AC 101 ms
77,328 KB
testcase_18 AC 101 ms
77,072 KB
testcase_19 AC 104 ms
77,016 KB
testcase_20 AC 102 ms
76,780 KB
testcase_21 AC 40 ms
53,204 KB
testcase_22 AC 37 ms
53,016 KB
testcase_23 AC 40 ms
54,364 KB
testcase_24 AC 41 ms
53,972 KB
testcase_25 AC 41 ms
53,492 KB
testcase_26 AC 38 ms
52,592 KB
testcase_27 AC 38 ms
52,572 KB
testcase_28 AC 37 ms
53,448 KB
testcase_29 AC 38 ms
52,468 KB
testcase_30 AC 38 ms
52,396 KB
testcase_31 AC 37 ms
52,300 KB
testcase_32 AC 38 ms
53,436 KB
testcase_33 AC 41 ms
53,756 KB
testcase_34 AC 51 ms
61,952 KB
testcase_35 AC 52 ms
64,028 KB
testcase_36 AC 53 ms
63,812 KB
testcase_37 AC 47 ms
59,480 KB
testcase_38 AC 59 ms
72,432 KB
testcase_39 AC 55 ms
73,844 KB
testcase_40 AC 556 ms
86,816 KB
testcase_41 AC 340 ms
85,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

readline = stdin.readline

az = 'abcdefghijklmnopqrstuvwxyz'

N = int(readline())
S = [readline()[:-1] for _ in range(N)]

dp = {chr(ord('a') - 1): 0}
for l in sorted(S):
    if ''.join(sorted(l)) != l:
        continue
    start = l[0]
    last = l[-1]
    dp.setdefault(last, 0)
    for c in reversed(az):
        if c not in dp:
            continue
        if start < c:
            continue
        dp[last] = max(dp[last], dp[c] + len(l))
    dp[last] = max(dp[last], len(l))
print(max(dp.values()))
0