結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 385 ms
101,812 KB
testcase_05 AC 403 ms
101,360 KB
testcase_06 AC 384 ms
101,296 KB
testcase_07 AC 373 ms
101,552 KB
testcase_08 AC 390 ms
101,292 KB
testcase_09 AC 83 ms
72,704 KB
testcase_10 AC 86 ms
73,344 KB
testcase_11 AC 82 ms
72,704 KB
testcase_12 AC 88 ms
73,216 KB
testcase_13 AC 83 ms
73,088 KB
testcase_14 AC 111 ms
78,288 KB
testcase_15 AC 109 ms
78,396 KB
testcase_16 AC 112 ms
78,296 KB
testcase_17 AC 112 ms
78,080 KB
testcase_18 AC 111 ms
78,080 KB
testcase_19 AC 108 ms
77,824 KB
testcase_20 AC 109 ms
78,176 KB
testcase_21 AC 46 ms
59,264 KB
testcase_22 AC 42 ms
58,624 KB
testcase_23 AC 46 ms
60,288 KB
testcase_24 AC 47 ms
60,544 KB
testcase_25 AC 47 ms
60,288 KB
testcase_26 AC 36 ms
52,352 KB
testcase_27 AC 38 ms
51,840 KB
testcase_28 AC 39 ms
51,840 KB
testcase_29 AC 39 ms
51,968 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 42 ms
57,984 KB
testcase_32 AC 45 ms
58,112 KB
testcase_33 AC 43 ms
57,856 KB
testcase_34 AC 47 ms
60,032 KB
testcase_35 AC 54 ms
70,400 KB
testcase_36 AC 56 ms
69,760 KB
testcase_37 AC 49 ms
64,768 KB
testcase_38 AC 53 ms
71,424 KB
testcase_39 AC 56 ms
72,192 KB
testcase_40 AC 522 ms
124,212 KB
testcase_41 AC 289 ms
122,684 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