結果

問題 No.1512 作文
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-21 21:27:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 111,928 KB
最終ジャッジ日時 2024-10-10 07:43:09
合計ジャッジ時間 6,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 368 ms
95,408 KB
testcase_05 AC 373 ms
95,064 KB
testcase_06 AC 369 ms
95,008 KB
testcase_07 AC 362 ms
94,996 KB
testcase_08 AC 371 ms
95,404 KB
testcase_09 AC 83 ms
76,032 KB
testcase_10 AC 87 ms
76,416 KB
testcase_11 AC 85 ms
75,904 KB
testcase_12 AC 86 ms
76,672 KB
testcase_13 AC 86 ms
76,288 KB
testcase_14 AC 94 ms
76,800 KB
testcase_15 AC 92 ms
77,056 KB
testcase_16 AC 91 ms
76,800 KB
testcase_17 AC 93 ms
76,928 KB
testcase_18 AC 95 ms
76,672 KB
testcase_19 AC 92 ms
76,928 KB
testcase_20 AC 90 ms
76,928 KB
testcase_21 AC 47 ms
59,776 KB
testcase_22 AC 44 ms
58,240 KB
testcase_23 AC 48 ms
60,544 KB
testcase_24 AC 49 ms
60,928 KB
testcase_25 AC 50 ms
60,416 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 40 ms
51,584 KB
testcase_30 AC 43 ms
51,840 KB
testcase_31 AC 48 ms
57,984 KB
testcase_32 AC 46 ms
58,368 KB
testcase_33 AC 45 ms
57,856 KB
testcase_34 AC 50 ms
60,288 KB
testcase_35 AC 69 ms
81,536 KB
testcase_36 AC 69 ms
81,664 KB
testcase_37 AC 69 ms
80,128 KB
testcase_38 AC 71 ms
75,520 KB
testcase_39 AC 73 ms
75,776 KB
testcase_40 AC 498 ms
111,928 KB
testcase_41 AC 227 ms
110,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.readline

n = int(input())
S = [input().rstrip() for i in range(n)]
X = [0]*26
T = []
for s in S:
    temp = []
    for c in s:
        temp.append(ord(c)-ord('a'))
    if sorted(temp) != temp:
        continue
    T.append((temp[0], temp[-1], len(s)))
if not T:
    print(0)
    exit()
T.sort()
for p, q, l in T:
    X[q] = max(X[q], max(X[0:p+1])+l)
print(max(X))
0