結果

問題 No.1512 作文
ユーザー tamatotamato
提出日時 2021-05-21 21:27:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 119,632 KB
最終ジャッジ日時 2024-10-10 07:43:02
合計ジャッジ時間 5,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 43 ms
52,096 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 84 ms
69,760 KB
testcase_10 AC 87 ms
69,888 KB
testcase_11 AC 82 ms
69,632 KB
testcase_12 AC 88 ms
69,888 KB
testcase_13 AC 84 ms
70,016 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 45 ms
58,496 KB
testcase_22 AC 43 ms
57,984 KB
testcase_23 AC 44 ms
59,392 KB
testcase_24 AC 47 ms
59,264 KB
testcase_25 AC 45 ms
59,648 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 38 ms
52,608 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 37 ms
52,480 KB
testcase_31 AC 41 ms
57,728 KB
testcase_32 AC 42 ms
57,928 KB
testcase_33 AC 41 ms
57,984 KB
testcase_34 AC 42 ms
60,160 KB
testcase_35 AC 66 ms
84,864 KB
testcase_36 AC 67 ms
84,608 KB
testcase_37 AC 49 ms
71,296 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 394 ms
119,632 KB
testcase_41 AC 251 ms
119,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    T = []
    for _ in range(N):
        S = input().rstrip('\n')
        S = [s for s in S]
        SS = sorted(S)
        if S == SS:
            T.append((S[0], S[-1], len(S)))
    for i in range(25):
        T.append((chr(i+97), chr(i+98), 0))
    T.sort(key=lambda x: x[0])
    dp = [0] * 26
    for a, b, l in T:
        aa = ord(a) - 97
        bb = ord(b) - 97
        dp[bb] = max(dp[bb], dp[aa] + l)
    print(max(dp))


if __name__ == '__main__':
    main()
0