結果

問題 No.1512 作文
ユーザー irumo8202irumo8202
提出日時 2022-02-13 15:58:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,936 KB
最終ジャッジ日時 2024-06-29 05:39:13
合計ジャッジ時間 9,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 655 ms
21,472 KB
testcase_05 AC 664 ms
21,448 KB
testcase_06 AC 637 ms
21,596 KB
testcase_07 AC 640 ms
21,332 KB
testcase_08 AC 633 ms
21,488 KB
testcase_09 AC 130 ms
10,944 KB
testcase_10 AC 137 ms
11,136 KB
testcase_11 AC 131 ms
10,880 KB
testcase_12 AC 139 ms
11,116 KB
testcase_13 AC 141 ms
11,136 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 35 ms
10,496 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 38 ms
10,752 KB
testcase_24 AC 38 ms
10,496 KB
testcase_25 AC 37 ms
10,624 KB
testcase_26 AC 27 ms
10,624 KB
testcase_27 AC 25 ms
10,752 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 WA -
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 28 ms
10,624 KB
testcase_32 AC 28 ms
10,624 KB
testcase_33 AC 26 ms
10,752 KB
testcase_34 AC 34 ms
10,752 KB
testcase_35 AC 134 ms
12,796 KB
testcase_36 AC 133 ms
12,668 KB
testcase_37 AC 92 ms
11,776 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 740 ms
31,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def check(word):
    flg = True
    mi, mx = 25, 0
    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 = [ord(x)-97 for x in input()]
    ok, mi, mx, ln = check(S)
    if ok:
        lis.append([mi, mx, ln])

lis.sort()
from collections import defaultdict

ans = 0
dp = [0] * 26
for mi, mx, leng in lis:
    if mi == mx:
        dp[mx] += leng
    else:
        dp[mx] = max(dp[mx], max(dp[:mi+1]) + leng)

print(max(dp))
0