結果

問題 No.1512 作文
ユーザー hir355hir355
提出日時 2021-05-21 21:33:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 90,108 KB
最終ジャッジ日時 2024-10-10 07:57:45
合計ジャッジ時間 4,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,772 KB
testcase_01 AC 37 ms
52,612 KB
testcase_02 AC 37 ms
52,624 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 158 ms
77,868 KB
testcase_05 AC 157 ms
77,992 KB
testcase_06 AC 154 ms
77,728 KB
testcase_07 AC 155 ms
77,756 KB
testcase_08 AC 155 ms
77,876 KB
testcase_09 AC 77 ms
71,500 KB
testcase_10 AC 82 ms
71,932 KB
testcase_11 AC 79 ms
71,748 KB
testcase_12 AC 84 ms
72,576 KB
testcase_13 AC 81 ms
72,164 KB
testcase_14 AC 93 ms
76,056 KB
testcase_15 AC 94 ms
76,460 KB
testcase_16 AC 93 ms
75,856 KB
testcase_17 AC 92 ms
75,864 KB
testcase_18 AC 95 ms
76,472 KB
testcase_19 AC 94 ms
76,056 KB
testcase_20 AC 94 ms
76,052 KB
testcase_21 AC 40 ms
53,928 KB
testcase_22 AC 40 ms
52,804 KB
testcase_23 AC 44 ms
56,356 KB
testcase_24 AC 42 ms
55,668 KB
testcase_25 AC 42 ms
56,276 KB
testcase_26 AC 37 ms
53,760 KB
testcase_27 AC 38 ms
53,560 KB
testcase_28 AC 38 ms
52,144 KB
testcase_29 AC 40 ms
52,540 KB
testcase_30 AC 40 ms
51,944 KB
testcase_31 AC 39 ms
53,384 KB
testcase_32 AC 38 ms
53,628 KB
testcase_33 AC 37 ms
52,504 KB
testcase_34 AC 41 ms
56,320 KB
testcase_35 AC 73 ms
89,388 KB
testcase_36 AC 73 ms
90,108 KB
testcase_37 AC 48 ms
72,936 KB
testcase_38 AC 57 ms
70,788 KB
testcase_39 AC 58 ms
71,076 KB
testcase_40 AC 164 ms
75,996 KB
testcase_41 AC 162 ms
76,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [0] * 26
g = [[] for _ in range(26)]
k = [0] * 26
for i in range(n):
    s = input()
    if sorted(s) == list(s):
        if s[0] == s[-1]:
            k[ord(s[0]) - 97] += len(s)
        else:
            g[ord(s[0]) - 97].append((ord(s[-1]) - 97, len(s)))
for i in range(25):
    dp[i] += k[i]
    for j, c in g[i]:
        dp[j] = max(dp[j], dp[i] + c)
    dp[i + 1] = max(dp[i + 1], dp[i])
print(dp[-1] + k[-1])
0