結果

問題 No.1512 作文
ユーザー Kiri8128Kiri8128
提出日時 2021-05-21 21:28:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,468 KB
最終ジャッジ日時 2024-10-10 07:44:52
合計ジャッジ時間 4,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 93 ms
75,776 KB
testcase_05 AC 97 ms
75,776 KB
testcase_06 AC 91 ms
76,184 KB
testcase_07 AC 93 ms
75,776 KB
testcase_08 AC 93 ms
75,904 KB
testcase_09 AC 46 ms
68,096 KB
testcase_10 AC 46 ms
68,480 KB
testcase_11 AC 45 ms
68,224 KB
testcase_12 AC 46 ms
68,864 KB
testcase_13 AC 44 ms
68,480 KB
testcase_14 AC 74 ms
76,288 KB
testcase_15 AC 77 ms
76,468 KB
testcase_16 AC 73 ms
75,776 KB
testcase_17 AC 77 ms
76,128 KB
testcase_18 AC 79 ms
76,396 KB
testcase_19 AC 87 ms
76,032 KB
testcase_20 AC 82 ms
76,288 KB
testcase_21 AC 41 ms
59,136 KB
testcase_22 AC 40 ms
58,496 KB
testcase_23 AC 41 ms
59,776 KB
testcase_24 AC 43 ms
60,160 KB
testcase_25 AC 43 ms
59,776 KB
testcase_26 AC 35 ms
52,096 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 40 ms
52,224 KB
testcase_29 AC 37 ms
52,608 KB
testcase_30 AC 37 ms
52,224 KB
testcase_31 AC 42 ms
59,008 KB
testcase_32 AC 44 ms
60,160 KB
testcase_33 AC 41 ms
59,136 KB
testcase_34 AC 43 ms
60,288 KB
testcase_35 AC 46 ms
68,992 KB
testcase_36 AC 47 ms
68,736 KB
testcase_37 AC 46 ms
65,408 KB
testcase_38 AC 48 ms
69,376 KB
testcase_39 AC 52 ms
71,808 KB
testcase_40 AC 91 ms
75,648 KB
testcase_41 AC 92 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
N = int(input())
X = [0] * 26
Y = [[0] * 26 for _ in range(26)]
for _ in range(N):
    S = [ord(a) - 97 for a in input()]
    for a, b in zip(S, S[1:]):
        if a > b:
            break
    else:
        l = S[0]
        r = S[-1]
        m = len(S)
        if l == r:
            X[l] += m
        else:
            Y[l][r] = max(Y[l][r], m)

Z = [0] * 27
for i in range(26):
    Z[i] += X[i]
    for j in range(i + 1, 26):
        Z[j] = max(Z[j], Z[i] + Y[i][j])
print(max(Z))
0