結果

問題 No.1512 作文
ユーザー KudeKude
提出日時 2021-05-21 21:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 105,136 KB
最終ジャッジ日時 2024-10-10 07:42:40
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 380 ms
89,168 KB
testcase_05 AC 376 ms
88,924 KB
testcase_06 AC 385 ms
89,156 KB
testcase_07 AC 365 ms
89,016 KB
testcase_08 AC 369 ms
89,072 KB
testcase_09 AC 41 ms
53,248 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 42 ms
53,376 KB
testcase_12 AC 41 ms
52,992 KB
testcase_13 AC 42 ms
53,504 KB
testcase_14 AC 107 ms
76,416 KB
testcase_15 AC 136 ms
76,928 KB
testcase_16 AC 112 ms
76,544 KB
testcase_17 AC 109 ms
76,544 KB
testcase_18 AC 114 ms
76,544 KB
testcase_19 AC 110 ms
76,416 KB
testcase_20 AC 109 ms
76,800 KB
testcase_21 AC 42 ms
52,224 KB
testcase_22 AC 41 ms
51,712 KB
testcase_23 AC 42 ms
52,864 KB
testcase_24 AC 43 ms
52,864 KB
testcase_25 AC 44 ms
52,736 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 45 ms
57,728 KB
testcase_32 AC 47 ms
59,008 KB
testcase_33 AC 45 ms
57,600 KB
testcase_34 AC 50 ms
59,776 KB
testcase_35 AC 61 ms
71,552 KB
testcase_36 AC 56 ms
71,680 KB
testcase_37 AC 51 ms
65,920 KB
testcase_38 AC 62 ms
73,728 KB
testcase_39 AC 68 ms
75,520 KB
testcase_40 AC 502 ms
105,136 KB
testcase_41 AC 278 ms
96,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = []
for _ in range(n):
    t = input()
    ok = True
    for i in range(len(t) - 1):
        if t[i] > t[i + 1]:
            ok = False
            break
    if ok:
        a = ord(t[0]) - ord('a')
        b = ord(t[-1]) - ord('a')
        s.append((a, b, len(t)))
s.sort()
dp = [0] * 27
for a, b, l in s:
    for i in range(a + 1)[::-1]:
        dp[b] = max(dp[b], dp[i] + l)
print(max(dp))
0