結果

問題 No.1512 作文
ユーザー ntudantuda
提出日時 2025-01-02 21:45:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 1,345 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2025-01-02 21:45:26
合計ジャッジ時間 6,685 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 172 ms
81,024 KB
testcase_05 AC 161 ms
81,152 KB
testcase_06 AC 161 ms
81,024 KB
testcase_07 AC 157 ms
81,152 KB
testcase_08 AC 164 ms
81,024 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
52,224 KB
testcase_27 AC 43 ms
52,352 KB
testcase_28 AC 43 ms
52,096 KB
testcase_29 AC 45 ms
52,224 KB
testcase_30 AC 42 ms
52,352 KB
testcase_31 AC 48 ms
58,368 KB
testcase_32 AC 50 ms
59,136 KB
testcase_33 AC 49 ms
58,112 KB
testcase_34 AC 52 ms
59,904 KB
testcase_35 AC 61 ms
71,680 KB
testcase_36 AC 65 ms
71,680 KB
testcase_37 AC 51 ms
66,304 KB
testcase_38 AC 62 ms
72,192 KB
testcase_39 AC 68 ms
73,600 KB
testcase_40 AC 182 ms
84,096 KB
testcase_41 AC 176 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Ss = [input() for _ in range(N)]
X = [[0] * 26 for _ in range(26)]
for S in Ss:
    NS = len(S)
    for i in range(NS - 1):
        if S[i] > S[i + 1]:
            continue
    s0 = ord(S[0]) - 97
    s1 = ord(S[-1]) - 97
    if s0 == s1:
        X[s0][s1] += NS
    else:
        X[s0][s1] = max(X[s0][s1], NS)
dp = [0] * 26
for i in range(26):
    for j in range(i, 26):
        if i == j:
            dp[i] += X[i][j]
        else:
            dp[j] = max(dp[j], dp[i] + X[i][j])

print(dp[-1])
0