結果

問題 No.1512 作文
ユーザー rlangevinrlangevin
提出日時 2023-01-09 17:03:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-05-10 00:59:34
合計ジャッジ時間 4,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 78 ms
76,544 KB
testcase_10 AC 81 ms
76,928 KB
testcase_11 AC 78 ms
76,416 KB
testcase_12 AC 79 ms
77,312 KB
testcase_13 AC 79 ms
76,672 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 44 ms
59,520 KB
testcase_22 WA -
testcase_23 AC 48 ms
60,928 KB
testcase_24 AC 50 ms
62,720 KB
testcase_25 AC 49 ms
62,592 KB
testcase_26 AC 37 ms
52,352 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 39 ms
52,096 KB
testcase_29 AC 37 ms
52,608 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 42 ms
58,496 KB
testcase_32 AC 44 ms
59,520 KB
testcase_33 AC 42 ms
57,728 KB
testcase_34 AC 44 ms
60,288 KB
testcase_35 AC 74 ms
90,752 KB
testcase_36 AC 74 ms
90,880 KB
testcase_37 AC 59 ms
78,336 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

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])
        
print(max(dp))       
0