結果

問題 No.1512 作文
ユーザー convexineqconvexineq
提出日時 2021-05-21 21:29:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-10-10 07:46:43
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 99 ms
93,440 KB
testcase_05 AC 99 ms
93,540 KB
testcase_06 AC 94 ms
93,568 KB
testcase_07 AC 96 ms
93,440 KB
testcase_08 AC 95 ms
93,440 KB
testcase_09 AC 71 ms
64,384 KB
testcase_10 AC 74 ms
64,384 KB
testcase_11 AC 73 ms
63,744 KB
testcase_12 AC 78 ms
64,512 KB
testcase_13 AC 75 ms
64,896 KB
testcase_14 AC 72 ms
78,180 KB
testcase_15 AC 74 ms
78,344 KB
testcase_16 AC 73 ms
78,196 KB
testcase_17 AC 73 ms
77,952 KB
testcase_18 AC 72 ms
77,696 KB
testcase_19 AC 72 ms
78,348 KB
testcase_20 AC 73 ms
78,052 KB
testcase_21 AC 39 ms
52,992 KB
testcase_22 AC 40 ms
52,736 KB
testcase_23 AC 42 ms
53,504 KB
testcase_24 AC 41 ms
53,760 KB
testcase_25 AC 41 ms
53,376 KB
testcase_26 AC 38 ms
52,096 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
52,404 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 39 ms
52,480 KB
testcase_32 AC 38 ms
52,480 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 38 ms
53,632 KB
testcase_35 AC 48 ms
63,104 KB
testcase_36 AC 48 ms
63,104 KB
testcase_37 AC 43 ms
58,624 KB
testcase_38 AC 45 ms
63,104 KB
testcase_39 AC 45 ms
63,104 KB
testcase_40 AC 97 ms
101,760 KB
testcase_41 AC 95 ms
101,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*S = open(0).read().split()
n = int(n)

g = [[-1]*26 for _ in range(26)]
for i in range(26): g[i][i] = 0
dp = [0]*26
for s in S:
    if "".join(sorted(s)) != s:
        continue
    a = ord(s[0])-97
    b = ord(s[-1])-97
    if a != b:
        g[a][b] = max(g[a][b],len(s))
    else:
        g[a][a] += len(s)

ans = 0
for i in range(26):
    dp[i] += g[i][i]
    for j in range(i+1,26):
        dp[j] = max(dp[j],dp[i]+ max(0,g[i][j]))
print(max(dp))
0