結果

問題 No.1512 作文
ユーザー rlangevinrlangevin
提出日時 2023-01-09 17:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,008 KB
最終ジャッジ日時 2024-05-10 01:01:08
合計ジャッジ時間 4,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 108 ms
75,648 KB
testcase_05 AC 110 ms
76,288 KB
testcase_06 AC 109 ms
75,648 KB
testcase_07 AC 112 ms
75,648 KB
testcase_08 AC 112 ms
76,032 KB
testcase_09 AC 75 ms
76,032 KB
testcase_10 AC 76 ms
76,800 KB
testcase_11 AC 81 ms
76,288 KB
testcase_12 AC 78 ms
77,184 KB
testcase_13 AC 74 ms
76,544 KB
testcase_14 AC 79 ms
76,288 KB
testcase_15 AC 80 ms
76,416 KB
testcase_16 AC 80 ms
76,288 KB
testcase_17 AC 79 ms
75,648 KB
testcase_18 AC 79 ms
75,904 KB
testcase_19 AC 81 ms
75,776 KB
testcase_20 AC 81 ms
75,648 KB
testcase_21 AC 45 ms
59,904 KB
testcase_22 AC 44 ms
59,648 KB
testcase_23 AC 48 ms
61,056 KB
testcase_24 AC 50 ms
62,208 KB
testcase_25 AC 49 ms
62,336 KB
testcase_26 AC 36 ms
52,352 KB
testcase_27 AC 37 ms
51,840 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 42 ms
58,624 KB
testcase_32 AC 43 ms
59,520 KB
testcase_33 AC 40 ms
57,728 KB
testcase_34 AC 43 ms
60,544 KB
testcase_35 AC 70 ms
91,008 KB
testcase_36 AC 68 ms
90,624 KB
testcase_37 AC 57 ms
78,080 KB
testcase_38 AC 63 ms
75,264 KB
testcase_39 AC 67 ms
75,648 KB
testcase_40 AC 114 ms
76,288 KB
testcase_41 AC 115 ms
76,416 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