結果

問題 No.1512 作文
ユーザー H20H20
提出日時 2021-05-22 02:52:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 109,772 KB
最終ジャッジ日時 2024-10-10 10:36:53
合計ジャッジ時間 6,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,316 KB
testcase_01 AC 37 ms
52,576 KB
testcase_02 AC 36 ms
52,268 KB
testcase_03 AC 37 ms
52,420 KB
testcase_04 AC 426 ms
94,240 KB
testcase_05 AC 423 ms
94,504 KB
testcase_06 AC 428 ms
93,960 KB
testcase_07 AC 427 ms
94,604 KB
testcase_08 AC 440 ms
94,112 KB
testcase_09 AC 76 ms
72,540 KB
testcase_10 AC 79 ms
74,268 KB
testcase_11 AC 76 ms
73,960 KB
testcase_12 AC 82 ms
74,388 KB
testcase_13 AC 78 ms
74,064 KB
testcase_14 AC 108 ms
76,520 KB
testcase_15 AC 109 ms
76,964 KB
testcase_16 AC 108 ms
76,372 KB
testcase_17 AC 108 ms
76,780 KB
testcase_18 AC 110 ms
76,444 KB
testcase_19 AC 115 ms
76,488 KB
testcase_20 AC 109 ms
76,376 KB
testcase_21 AC 44 ms
60,328 KB
testcase_22 AC 42 ms
59,368 KB
testcase_23 AC 46 ms
61,084 KB
testcase_24 AC 47 ms
60,620 KB
testcase_25 AC 50 ms
61,624 KB
testcase_26 AC 37 ms
52,948 KB
testcase_27 AC 36 ms
52,836 KB
testcase_28 AC 37 ms
52,336 KB
testcase_29 AC 37 ms
52,296 KB
testcase_30 AC 37 ms
52,740 KB
testcase_31 AC 41 ms
58,156 KB
testcase_32 AC 40 ms
59,396 KB
testcase_33 AC 41 ms
58,676 KB
testcase_34 AC 44 ms
61,788 KB
testcase_35 AC 51 ms
71,036 KB
testcase_36 AC 52 ms
71,044 KB
testcase_37 AC 47 ms
66,844 KB
testcase_38 AC 67 ms
83,136 KB
testcase_39 AC 73 ms
82,768 KB
testcase_40 AC 606 ms
109,772 KB
testcase_41 AC 318 ms
108,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = []
for i in range(N):
    S = list(input())
    if ''.join(map(str, S)) == ''.join(map(str, sorted(S))):
        L.append(S)
L.sort()
A = [0]*26
for l in L:
    begin = ord(l[0])-97
    end = ord(l[-1])-97
    A[end]=max(A[end],max(A[:begin+1])+len(l))
print(max(A))
0