結果

問題 No.1512 作文
ユーザー rlangevinrlangevin
提出日時 2023-01-09 17:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 92,584 KB
最終ジャッジ日時 2024-12-17 20:07:22
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,752 KB
testcase_01 AC 37 ms
52,952 KB
testcase_02 AC 36 ms
53,628 KB
testcase_03 AC 37 ms
52,892 KB
testcase_04 AC 107 ms
75,900 KB
testcase_05 AC 105 ms
76,400 KB
testcase_06 AC 107 ms
76,388 KB
testcase_07 AC 107 ms
75,956 KB
testcase_08 AC 109 ms
75,980 KB
testcase_09 AC 72 ms
76,616 KB
testcase_10 AC 73 ms
77,068 KB
testcase_11 AC 72 ms
76,556 KB
testcase_12 AC 76 ms
77,164 KB
testcase_13 AC 73 ms
76,628 KB
testcase_14 AC 77 ms
75,948 KB
testcase_15 AC 76 ms
76,276 KB
testcase_16 AC 75 ms
75,956 KB
testcase_17 AC 76 ms
75,968 KB
testcase_18 AC 76 ms
75,804 KB
testcase_19 AC 76 ms
75,836 KB
testcase_20 AC 74 ms
76,392 KB
testcase_21 AC 41 ms
61,108 KB
testcase_22 AC 43 ms
59,900 KB
testcase_23 AC 45 ms
62,248 KB
testcase_24 AC 46 ms
63,356 KB
testcase_25 AC 46 ms
63,996 KB
testcase_26 AC 38 ms
53,084 KB
testcase_27 AC 38 ms
53,312 KB
testcase_28 AC 39 ms
53,268 KB
testcase_29 AC 39 ms
53,056 KB
testcase_30 AC 38 ms
52,672 KB
testcase_31 AC 45 ms
59,280 KB
testcase_32 AC 42 ms
60,244 KB
testcase_33 AC 39 ms
58,356 KB
testcase_34 AC 43 ms
61,084 KB
testcase_35 AC 64 ms
91,920 KB
testcase_36 AC 64 ms
92,584 KB
testcase_37 AC 55 ms
79,384 KB
testcase_38 AC 57 ms
75,172 KB
testcase_39 AC 60 ms
75,300 KB
testcase_40 AC 121 ms
75,796 KB
testcase_41 AC 113 ms
76,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def alp_to_num(cha):
    num = ord(cha) - ord("a")
    return num

N = int(readline())
D = [[0] * 26 for i in range(26)]
for i in range(N):
    S = list(readline().rstrip())
    S = list(map(alp_to_num, S))
    if S != sorted(S):
        continue
    a, b = S[0], S[-1]
    if a == b:
        D[a][a] += len(S)
    else:
        D[a][b] = max(D[a][b], len(S))
        
for i in range(26):
    for j in range(i + 1, 26):
        D[i][j] += D[i][i]
        
dp = [0] * 26
for i in range(1, 26):
    dp[i] = D[0][i]
    
for i in range(1, 26):
    for j in range(i + 1, 26):
        dp[j] = max(dp[j], dp[i] + D[i][j])
dp[-1] += D[-1][-1]
print(max(dp))    
0