結果

問題 No.1512 作文
ユーザー nephrologistnephrologist
提出日時 2021-05-21 22:21:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,272 KB
最終ジャッジ日時 2024-10-10 09:07:09
合計ジャッジ時間 5,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 259 ms
81,836 KB
testcase_05 AC 253 ms
81,536 KB
testcase_06 AC 252 ms
82,176 KB
testcase_07 AC 255 ms
82,048 KB
testcase_08 AC 255 ms
81,664 KB
testcase_09 AC 76 ms
65,664 KB
testcase_10 AC 79 ms
66,432 KB
testcase_11 AC 72 ms
65,664 KB
testcase_12 AC 80 ms
66,560 KB
testcase_13 AC 75 ms
66,304 KB
testcase_14 AC 93 ms
76,160 KB
testcase_15 AC 97 ms
76,288 KB
testcase_16 AC 99 ms
76,504 KB
testcase_17 AC 99 ms
76,116 KB
testcase_18 AC 96 ms
76,272 KB
testcase_19 AC 98 ms
76,384 KB
testcase_20 AC 96 ms
76,160 KB
testcase_21 AC 43 ms
53,376 KB
testcase_22 AC 39 ms
52,352 KB
testcase_23 AC 43 ms
54,016 KB
testcase_24 AC 44 ms
54,144 KB
testcase_25 AC 46 ms
53,888 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 39 ms
51,584 KB
testcase_28 AC 40 ms
51,584 KB
testcase_29 AC 38 ms
52,096 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 AC 40 ms
52,480 KB
testcase_32 AC 40 ms
52,608 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 43 ms
54,784 KB
testcase_35 AC 67 ms
82,048 KB
testcase_36 AC 66 ms
81,408 KB
testcase_37 AC 48 ms
67,200 KB
testcase_38 AC 57 ms
70,912 KB
testcase_39 AC 60 ms
70,784 KB
testcase_40 AC 242 ms
88,272 KB
testcase_41 AC 218 ms
87,728 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")
        memo[num1].append((num2, len(s)))


for i in range(26):
    memo[i].sort()
    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))

0