結果

問題 No.1512 作文
ユーザー nephrologistnephrologist
提出日時 2021-05-21 22:20:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 82,160 KB
最終ジャッジ日時 2024-10-10 09:05:51
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,000 KB
testcase_01 AC 37 ms
53,188 KB
testcase_02 AC 37 ms
52,884 KB
testcase_03 AC 38 ms
54,044 KB
testcase_04 AC 150 ms
77,992 KB
testcase_05 AC 149 ms
78,012 KB
testcase_06 AC 145 ms
77,684 KB
testcase_07 AC 150 ms
77,920 KB
testcase_08 AC 149 ms
77,932 KB
testcase_09 AC 71 ms
66,292 KB
testcase_10 AC 74 ms
66,472 KB
testcase_11 AC 72 ms
66,176 KB
testcase_12 AC 77 ms
67,976 KB
testcase_13 AC 73 ms
67,988 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 92 ms
76,108 KB
testcase_21 AC 42 ms
54,716 KB
testcase_22 AC 39 ms
53,488 KB
testcase_23 AC 42 ms
55,824 KB
testcase_24 WA -
testcase_25 AC 42 ms
55,468 KB
testcase_26 AC 38 ms
52,524 KB
testcase_27 AC 38 ms
52,664 KB
testcase_28 AC 38 ms
53,804 KB
testcase_29 AC 37 ms
53,080 KB
testcase_30 AC 37 ms
52,872 KB
testcase_31 AC 39 ms
54,728 KB
testcase_32 WA -
testcase_33 AC 37 ms
52,764 KB
testcase_34 AC 41 ms
56,708 KB
testcase_35 AC 64 ms
82,160 KB
testcase_36 AC 64 ms
82,088 KB
testcase_37 AC 47 ms
67,308 KB
testcase_38 AC 54 ms
71,268 KB
testcase_39 AC 54 ms
71,096 KB
testcase_40 AC 161 ms
76,244 KB
testcase_41 AC 155 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

n = int(input())
memo = [[] for _ in range(26)]
dp = [0] * 26
atode = 0
for _ in range(n):
    s = list(input())
    if sorted(s) == s:
        num1 = ord(s[0]) - ord("a")
        num2 = ord(s[-1]) - ord("a")
        if num1 == num2:
            atode += len(s)
        else:
            memo[num1].append((num2, len(s)))


for i in range(26):
    dp[i] = max(dp[: (i + 1)])
    for a, b in memo[i]:
        dp[a] = max(dp[a], dp[i] + b)
    # print(dp)

print(max(dp) + atode)

0