結果

問題 No.1512 作文
ユーザー Akijin_007Akijin_007
提出日時 2023-05-11 19:55:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,576 KB
最終ジャッジ日時 2024-05-05 17:02:15
合計ジャッジ時間 7,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 458 ms
101,552 KB
testcase_05 AC 453 ms
101,076 KB
testcase_06 AC 450 ms
101,296 KB
testcase_07 AC 463 ms
101,688 KB
testcase_08 AC 465 ms
101,416 KB
testcase_09 AC 90 ms
72,704 KB
testcase_10 AC 94 ms
72,704 KB
testcase_11 AC 91 ms
72,704 KB
testcase_12 AC 96 ms
73,344 KB
testcase_13 AC 92 ms
72,832 KB
testcase_14 AC 125 ms
77,952 KB
testcase_15 AC 125 ms
78,208 KB
testcase_16 AC 127 ms
78,080 KB
testcase_17 AC 126 ms
78,336 KB
testcase_18 AC 125 ms
78,208 KB
testcase_19 AC 127 ms
78,208 KB
testcase_20 AC 123 ms
78,080 KB
testcase_21 AC 50 ms
59,520 KB
testcase_22 AC 47 ms
57,856 KB
testcase_23 AC 51 ms
59,776 KB
testcase_24 AC 52 ms
60,416 KB
testcase_25 AC 51 ms
59,648 KB
testcase_26 AC 41 ms
51,712 KB
testcase_27 AC 41 ms
51,328 KB
testcase_28 AC 41 ms
51,456 KB
testcase_29 AC 42 ms
51,328 KB
testcase_30 AC 41 ms
51,328 KB
testcase_31 AC 46 ms
58,112 KB
testcase_32 AC 46 ms
58,112 KB
testcase_33 AC 47 ms
57,728 KB
testcase_34 AC 49 ms
59,648 KB
testcase_35 AC 61 ms
70,144 KB
testcase_36 AC 63 ms
69,632 KB
testcase_37 AC 56 ms
65,152 KB
testcase_38 AC 63 ms
71,168 KB
testcase_39 AC 65 ms
72,064 KB
testcase_40 AC 604 ms
123,576 KB
testcase_41 AC 351 ms
122,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = [0] * N
for i in range(N):
    S[i] = input()

a = []
for i in range(N):
    t = "".join([str(x) for x in sorted(S[i])])
    if t == S[i]:
        a.append((ord(S[i][0])-97, ord(S[i][-1])-97, len(S[i])))
        # print(a[-1], S[i])

a = sorted(a)
dp = [0] * 26

for i in range(len(a)):
    u, v, w = a[i]
    dp[v] = max(dp[v], max(dp[:u+1])+w)

print(max(dp))
0