結果

問題 No.1512 作文
ユーザー hir355hir355
提出日時 2021-05-21 21:28:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 90,408 KB
最終ジャッジ日時 2024-10-10 07:43:14
合計ジャッジ時間 4,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,928 KB
testcase_01 AC 35 ms
52,816 KB
testcase_02 AC 35 ms
52,784 KB
testcase_03 AC 35 ms
53,532 KB
testcase_04 AC 146 ms
77,872 KB
testcase_05 AC 149 ms
78,112 KB
testcase_06 AC 146 ms
78,328 KB
testcase_07 AC 147 ms
77,864 KB
testcase_08 AC 147 ms
77,836 KB
testcase_09 AC 74 ms
71,908 KB
testcase_10 AC 77 ms
72,312 KB
testcase_11 AC 74 ms
71,856 KB
testcase_12 AC 82 ms
72,668 KB
testcase_13 AC 78 ms
72,100 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 91 ms
76,364 KB
testcase_21 AC 40 ms
54,844 KB
testcase_22 AC 37 ms
54,004 KB
testcase_23 AC 42 ms
54,692 KB
testcase_24 WA -
testcase_25 AC 41 ms
55,428 KB
testcase_26 AC 36 ms
52,580 KB
testcase_27 AC 36 ms
52,280 KB
testcase_28 AC 36 ms
53,012 KB
testcase_29 AC 36 ms
52,472 KB
testcase_30 AC 36 ms
53,092 KB
testcase_31 AC 37 ms
54,188 KB
testcase_32 WA -
testcase_33 AC 38 ms
53,544 KB
testcase_34 AC 40 ms
56,156 KB
testcase_35 AC 70 ms
90,316 KB
testcase_36 AC 70 ms
90,408 KB
testcase_37 AC 49 ms
71,900 KB
testcase_38 AC 55 ms
71,232 KB
testcase_39 AC 54 ms
71,136 KB
testcase_40 AC 157 ms
76,528 KB
testcase_41 AC 155 ms
76,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [0] * 26
g = [[] for _ in range(26)]
ans = 0
for i in range(n):
    s = input()
    if sorted(s) == list(s):
        if s[0] == s[-1]:
            ans += len(s)
        else:
            g[ord(s[0]) - 97].append((ord(s[-1]) - 97, len(s)))
for i in range(25):
    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] + ans)
0