結果

問題 No.1512 作文
ユーザー ああいいああいい
提出日時 2022-03-12 14:07:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 76,920 KB
最終ジャッジ日時 2024-09-16 20:42:08
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,164 KB
testcase_01 AC 31 ms
53,308 KB
testcase_02 AC 34 ms
52,664 KB
testcase_03 AC 34 ms
52,944 KB
testcase_04 AC 111 ms
76,340 KB
testcase_05 AC 111 ms
76,188 KB
testcase_06 AC 111 ms
76,512 KB
testcase_07 AC 111 ms
76,320 KB
testcase_08 AC 111 ms
76,116 KB
testcase_09 AC 32 ms
54,248 KB
testcase_10 AC 33 ms
55,428 KB
testcase_11 AC 32 ms
54,272 KB
testcase_12 AC 31 ms
53,532 KB
testcase_13 AC 31 ms
53,568 KB
testcase_14 AC 74 ms
76,120 KB
testcase_15 AC 99 ms
76,920 KB
testcase_16 AC 76 ms
76,840 KB
testcase_17 AC 74 ms
76,220 KB
testcase_18 AC 77 ms
76,636 KB
testcase_19 AC 75 ms
76,828 KB
testcase_20 AC 76 ms
76,248 KB
testcase_21 AC 34 ms
52,808 KB
testcase_22 AC 39 ms
53,152 KB
testcase_23 AC 33 ms
53,692 KB
testcase_24 AC 41 ms
53,344 KB
testcase_25 AC 34 ms
53,152 KB
testcase_26 AC 30 ms
52,680 KB
testcase_27 AC 33 ms
53,604 KB
testcase_28 AC 31 ms
53,320 KB
testcase_29 AC 32 ms
53,004 KB
testcase_30 AC 32 ms
53,804 KB
testcase_31 AC 34 ms
58,152 KB
testcase_32 AC 34 ms
59,364 KB
testcase_33 AC 36 ms
59,812 KB
testcase_34 AC 36 ms
59,724 KB
testcase_35 AC 39 ms
71,908 KB
testcase_36 AC 39 ms
72,316 KB
testcase_37 AC 37 ms
66,824 KB
testcase_38 AC 41 ms
72,656 KB
testcase_39 AC 47 ms
73,636 KB
testcase_40 AC 122 ms
76,020 KB
testcase_41 AC 112 ms
76,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

dat = [[0] * 26 for _ in range(26)]

for _ in range(N):
    S = input()
    flag = True
    for i in range(len(S) - 1):
        if S[i] > S[i+1]:
            flag = False
            break
    if flag:
        c = ord(S[0]) - ord('a')
        cc = ord(S[-1]) - ord('a')
        if c == cc:
            dat[c][c] += len(S)
        else:
            dat[c][cc] = max(dat[c][cc],len(S))
            
dp = [0] * 26
dp[0] = dat[0][0]
for i in range(26):
    for k in range(i+1,26):
        dp[k] = max(dp[k],dp[i] + dat[i][k] + dat[k][k])
print(max(dp))
0