結果

問題 No.1512 作文
ユーザー otsunekootsuneko
提出日時 2021-05-21 22:00:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 171,360 KB
最終ジャッジ日時 2024-10-10 08:40:40
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,780 KB
testcase_01 AC 38 ms
52,764 KB
testcase_02 AC 38 ms
52,472 KB
testcase_03 AC 38 ms
53,228 KB
testcase_04 AC 459 ms
123,532 KB
testcase_05 AC 452 ms
123,584 KB
testcase_06 AC 446 ms
123,504 KB
testcase_07 AC 456 ms
123,640 KB
testcase_08 AC 459 ms
123,688 KB
testcase_09 AC 40 ms
53,636 KB
testcase_10 AC 38 ms
55,040 KB
testcase_11 AC 38 ms
53,700 KB
testcase_12 AC 40 ms
54,612 KB
testcase_13 AC 39 ms
54,104 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 38 ms
53,832 KB
testcase_22 AC 39 ms
53,408 KB
testcase_23 AC 40 ms
53,704 KB
testcase_24 AC 39 ms
53,688 KB
testcase_25 AC 39 ms
52,772 KB
testcase_26 AC 38 ms
53,556 KB
testcase_27 AC 39 ms
52,824 KB
testcase_28 AC 40 ms
52,512 KB
testcase_29 AC 39 ms
52,124 KB
testcase_30 AC 39 ms
53,428 KB
testcase_31 WA -
testcase_32 AC 43 ms
58,804 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 49 ms
73,032 KB
testcase_36 AC 50 ms
72,096 KB
testcase_37 AC 46 ms
67,580 KB
testcase_38 AC 49 ms
72,156 KB
testcase_39 AC 51 ms
73,156 KB
testcase_40 AC 656 ms
171,360 KB
testcase_41 AC 314 ms
143,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
import sys
input = lambda: sys.stdin.readline().rstrip()
#INF = 10**18

N = int(input())
l = []
for i in range(N):
    S = input()
    for i in range(len(S)-1):
        if S[i] > S[i+1]:
            break
    else:
        l.append([S[0],S[-1],-len(S),S])
l.sort(key=itemgetter(0,1,2))

ans = 0
last = "a"
for s in l:
    if s[0] < last:
        continue
    else:
        ans -= s[2]
        last = s[1]
print(ans)
0