結果

問題 No.1512 作文
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-30 20:43:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 671 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 146,036 KB
最終ジャッジ日時 2024-09-21 00:54:35
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,020 KB
testcase_01 AC 37 ms
52,188 KB
testcase_02 AC 36 ms
53,852 KB
testcase_03 AC 37 ms
53,668 KB
testcase_04 AC 285 ms
111,304 KB
testcase_05 AC 286 ms
111,432 KB
testcase_06 AC 278 ms
110,928 KB
testcase_07 AC 281 ms
110,904 KB
testcase_08 AC 287 ms
110,924 KB
testcase_09 AC 38 ms
53,504 KB
testcase_10 AC 38 ms
53,248 KB
testcase_11 AC 37 ms
52,864 KB
testcase_12 AC 37 ms
53,120 KB
testcase_13 AC 37 ms
52,992 KB
testcase_14 AC 101 ms
76,724 KB
testcase_15 AC 127 ms
77,952 KB
testcase_16 AC 107 ms
76,672 KB
testcase_17 AC 101 ms
76,672 KB
testcase_18 AC 104 ms
76,544 KB
testcase_19 AC 103 ms
76,544 KB
testcase_20 AC 100 ms
76,712 KB
testcase_21 AC 39 ms
52,900 KB
testcase_22 AC 37 ms
52,224 KB
testcase_23 AC 39 ms
52,864 KB
testcase_24 AC 40 ms
52,480 KB
testcase_25 AC 40 ms
52,864 KB
testcase_26 AC 37 ms
51,584 KB
testcase_27 AC 37 ms
52,608 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 37 ms
52,352 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 43 ms
58,624 KB
testcase_32 AC 42 ms
58,752 KB
testcase_33 AC 41 ms
57,984 KB
testcase_34 AC 47 ms
61,056 KB
testcase_35 AC 44 ms
59,392 KB
testcase_36 AC 46 ms
59,520 KB
testcase_37 AC 45 ms
66,652 KB
testcase_38 AC 56 ms
75,516 KB
testcase_39 AC 59 ms
76,160 KB
testcase_40 AC 426 ms
146,036 KB
testcase_41 AC 253 ms
132,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

s=[]
for i in range(n):
    x=input()
    now=x[0]
    for i in range(1,len(x)):
        if  ord(now) > ord(x[i]):
            break
        now=x[i]
    else:
        s.append(x)
s.sort()

dp=[[-1]*27 for i in range(len(s)+1)]
dp[0][0]=0

for i in range(len(s)):
    for j in range(27):
        if dp[i][j] == -1:
            continue
        dp[i+1][j] = max(dp[i][j],dp[i+1][j])
        
        t = ord(s[i][0])-96
        if t >= j:#当末尾と候補文字先頭を比べる
            t2 = ord(s[i][-1])-96#候補文字末尾の場所に移動する
            dp[i+1][t2] = max(dp[i+1][t2],dp[i][j]+len(s[i]))
            

print(max(dp[-1]))


0