結果

問題 No.1512 作文
ユーザー irumo8202irumo8202
提出日時 2022-02-13 15:46:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,856 KB
最終ジャッジ日時 2024-06-29 05:38:47
合計ジャッジ時間 8,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 598 ms
29,176 KB
testcase_05 AC 596 ms
29,324 KB
testcase_06 AC 599 ms
29,104 KB
testcase_07 AC 580 ms
29,156 KB
testcase_08 AC 594 ms
29,392 KB
testcase_09 AC 122 ms
10,880 KB
testcase_10 AC 127 ms
10,752 KB
testcase_11 AC 119 ms
10,752 KB
testcase_12 AC 123 ms
10,752 KB
testcase_13 AC 125 ms
10,752 KB
testcase_14 AC 171 ms
11,008 KB
testcase_15 AC 170 ms
11,008 KB
testcase_16 AC 176 ms
11,008 KB
testcase_17 AC 174 ms
11,008 KB
testcase_18 AC 190 ms
11,008 KB
testcase_19 AC 174 ms
11,008 KB
testcase_20 AC 177 ms
11,136 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 37 ms
10,752 KB
testcase_24 AC 40 ms
10,752 KB
testcase_25 AC 35 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 124 ms
11,264 KB
testcase_36 AC 119 ms
11,264 KB
testcase_37 AC 84 ms
11,008 KB
testcase_38 AC 123 ms
10,752 KB
testcase_39 AC 126 ms
10,752 KB
testcase_40 AC 900 ms
46,856 KB
testcase_41 AC 768 ms
45,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def check(word):
    flg = True
    mi, mx = 'z', 'a'
    for s in word:
        if s < mx:
            flg = False
        mi = min(mi, s)
        mx = max(mx, s)
    return (flg, mi, mx, len(S))

lis = []

for i in range(N):
    S = input()
    ok, mi, mx, ln = check(S)
    if ok:
        lis.append([mi, mx, ln])

lis.sort(key=lambda x: (x[1], x[0], -x[2]))

ans = 0
last = 'a'
for mi, mx, leng in lis:
    if last > mi:
        continue
    ans += leng
    last = mx

print(ans)
0