結果

問題 No.1512 作文
ユーザー flippergoflippergo
提出日時 2024-09-25 09:02:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 143,592 KB
最終ジャッジ日時 2024-09-25 09:02:29
合計ジャッジ時間 6,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,792 KB
testcase_01 AC 39 ms
53,788 KB
testcase_02 AC 36 ms
54,492 KB
testcase_03 AC 36 ms
52,164 KB
testcase_04 AC 322 ms
111,724 KB
testcase_05 AC 343 ms
111,544 KB
testcase_06 AC 336 ms
111,584 KB
testcase_07 AC 328 ms
111,512 KB
testcase_08 AC 333 ms
111,992 KB
testcase_09 AC 37 ms
54,216 KB
testcase_10 AC 39 ms
54,416 KB
testcase_11 AC 38 ms
53,956 KB
testcase_12 AC 39 ms
53,768 KB
testcase_13 AC 38 ms
55,440 KB
testcase_14 AC 98 ms
77,704 KB
testcase_15 AC 98 ms
77,832 KB
testcase_16 AC 101 ms
78,160 KB
testcase_17 AC 96 ms
77,656 KB
testcase_18 AC 97 ms
77,764 KB
testcase_19 AC 99 ms
77,116 KB
testcase_20 AC 97 ms
77,288 KB
testcase_21 AC 40 ms
53,940 KB
testcase_22 AC 37 ms
53,236 KB
testcase_23 AC 39 ms
53,592 KB
testcase_24 AC 40 ms
53,560 KB
testcase_25 AC 39 ms
54,492 KB
testcase_26 AC 37 ms
52,276 KB
testcase_27 AC 36 ms
54,064 KB
testcase_28 AC 36 ms
53,420 KB
testcase_29 AC 36 ms
53,420 KB
testcase_30 AC 35 ms
53,716 KB
testcase_31 AC 40 ms
58,684 KB
testcase_32 AC 42 ms
59,120 KB
testcase_33 AC 42 ms
58,412 KB
testcase_34 AC 51 ms
66,184 KB
testcase_35 AC 48 ms
72,156 KB
testcase_36 AC 46 ms
71,864 KB
testcase_37 AC 46 ms
67,004 KB
testcase_38 AC 61 ms
75,552 KB
testcase_39 AC 61 ms
75,940 KB
testcase_40 AC 485 ms
143,508 KB
testcase_41 AC 409 ms
143,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S1 = [input().strip() for _ in range(N)]
S = []
for i in range(N):
    flag = 0
    for j in range(len(S1[i])-1):
        if S1[i][j]>S1[i][j+1]:
            flag = 1
            break
    if flag==0:
        S.append(S1[i])
S = sorted(S)
M = len(S)
if M==0:
    print(0)
else:
    dp = [[0 for _ in range(26)] for _ in range(M)]
    for j in range(26):
        if chr(j+97)==S[0][-1]:
            dp[0][j] = len(S[0])
    dmax = [0]*26
    dmax[0] = dp[0][0]
    for j in range(1,26):
        dmax[j] = max(dmax[j-1],dp[0][j])
    for i in range(1,M):
        dmax1 = [0]*26
        for j in range(26):
            dp[i][j] = dp[i-1][j]
            if S[i][-1]==chr(j+97):
                dp[i][j] = max(dp[i][j],dmax[ord(S[i][0])-97]+len(S[i]))
            if j==0:
                dmax1[0] = dp[i][0]
            else:
                dmax1[j] = max(dmax1[j-1],dp[i][j])
        dmax = dmax1[:]
    print(max(dp[M-1]))
0