結果

問題 No.1512 作文
ユーザー shotoyooshotoyoo
提出日時 2021-05-22 00:07:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-10-10 10:23:26
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,476 KB
testcase_01 AC 39 ms
52,616 KB
testcase_02 AC 38 ms
53,792 KB
testcase_03 AC 38 ms
52,900 KB
testcase_04 AC 113 ms
76,468 KB
testcase_05 AC 120 ms
76,436 KB
testcase_06 AC 120 ms
76,020 KB
testcase_07 AC 117 ms
76,012 KB
testcase_08 AC 114 ms
76,348 KB
testcase_09 AC 47 ms
67,320 KB
testcase_10 AC 48 ms
68,940 KB
testcase_11 AC 47 ms
67,676 KB
testcase_12 AC 48 ms
68,824 KB
testcase_13 AC 46 ms
67,440 KB
testcase_14 AC 92 ms
76,172 KB
testcase_15 AC 86 ms
76,428 KB
testcase_16 AC 90 ms
76,504 KB
testcase_17 AC 89 ms
76,408 KB
testcase_18 AC 86 ms
76,200 KB
testcase_19 AC 86 ms
76,532 KB
testcase_20 AC 88 ms
76,192 KB
testcase_21 AC 42 ms
59,940 KB
testcase_22 AC 41 ms
58,020 KB
testcase_23 AC 43 ms
60,144 KB
testcase_24 AC 44 ms
60,636 KB
testcase_25 AC 44 ms
60,472 KB
testcase_26 AC 37 ms
52,284 KB
testcase_27 AC 37 ms
53,216 KB
testcase_28 AC 37 ms
53,056 KB
testcase_29 AC 37 ms
52,944 KB
testcase_30 AC 37 ms
52,840 KB
testcase_31 AC 43 ms
60,060 KB
testcase_32 AC 48 ms
61,664 KB
testcase_33 AC 43 ms
58,640 KB
testcase_34 AC 45 ms
61,256 KB
testcase_35 AC 50 ms
72,324 KB
testcase_36 AC 50 ms
71,924 KB
testcase_37 AC 47 ms
67,276 KB
testcase_38 AC 62 ms
75,732 KB
testcase_39 AC 67 ms
75,816 KB
testcase_40 AC 108 ms
76,176 KB
testcase_41 AC 112 ms
75,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

n = int(input())
vs = [[0]*26 for _ in range(26)]
oa = ord("a")
for i in range(n):
    s = [ord(c)-oa for c in input()]
    if any(s[i]>s[i+1] for i in range(len(s)-1)):
        continue
    if s[0]==s[-1]:
        i = s[0]
        vs[i][i] += len(s)
    else:
        assert s[0]<s[-1]
        i = s[0]
        j = s[-1]
        vs[i][j] = max(vs[i][j], len(s))
dp = [0]*26
for i in range(26):
    v = vs[i][i]
    val = 0
    for j in range(i):
        val = max(val, vs[j][i] + dp[j])
    dp[i] = val+v
ans = max(dp)
print(ans)
0