結果

問題 No.1512 作文
ユーザー titiatitia
提出日時 2021-05-21 21:35:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 104,004 KB
最終ジャッジ日時 2024-10-10 08:04:39
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,152 KB
testcase_01 AC 36 ms
52,884 KB
testcase_02 AC 36 ms
52,876 KB
testcase_03 AC 36 ms
52,676 KB
testcase_04 AC 340 ms
91,188 KB
testcase_05 AC 342 ms
91,548 KB
testcase_06 AC 333 ms
91,312 KB
testcase_07 AC 335 ms
91,460 KB
testcase_08 AC 342 ms
91,240 KB
testcase_09 AC 70 ms
65,976 KB
testcase_10 AC 73 ms
67,264 KB
testcase_11 AC 69 ms
66,048 KB
testcase_12 AC 78 ms
66,652 KB
testcase_13 AC 73 ms
66,308 KB
testcase_14 AC 78 ms
76,000 KB
testcase_15 AC 80 ms
75,852 KB
testcase_16 AC 77 ms
76,112 KB
testcase_17 AC 77 ms
75,852 KB
testcase_18 AC 77 ms
76,340 KB
testcase_19 AC 77 ms
75,988 KB
testcase_20 AC 75 ms
76,044 KB
testcase_21 AC 38 ms
54,660 KB
testcase_22 AC 37 ms
53,704 KB
testcase_23 AC 39 ms
53,620 KB
testcase_24 AC 40 ms
54,684 KB
testcase_25 AC 40 ms
53,988 KB
testcase_26 AC 36 ms
53,168 KB
testcase_27 AC 37 ms
53,080 KB
testcase_28 AC 37 ms
52,524 KB
testcase_29 AC 36 ms
52,256 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 37 ms
53,420 KB
testcase_32 AC 37 ms
53,268 KB
testcase_33 AC 38 ms
52,400 KB
testcase_34 AC 40 ms
55,928 KB
testcase_35 AC 62 ms
82,076 KB
testcase_36 AC 62 ms
82,256 KB
testcase_37 AC 46 ms
67,660 KB
testcase_38 AC 64 ms
76,892 KB
testcase_39 AC 72 ms
78,888 KB
testcase_40 AC 466 ms
104,004 KB
testcase_41 AC 182 ms
103,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
L=[]
for i in range(N):
    S=list(input().strip())

    if S==sorted(S):
        L.append(S)

DP=[0]*26

L.sort()

for s in L:
    init=ord(s[0])-97
    end=ord(s[-1])-97

    xx=DP[init]+len(s)

    for j in range(end,26):
        DP[j]=max(DP[j],xx)

print(max(DP))
0