結果

問題 No.1512 作文
ユーザー O2MTO2MT
提出日時 2021-05-21 23:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 184,980 KB
最終ジャッジ日時 2024-10-10 10:11:13
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,016 KB
testcase_01 AC 37 ms
52,552 KB
testcase_02 AC 36 ms
53,136 KB
testcase_03 AC 39 ms
53,060 KB
testcase_04 AC 491 ms
135,756 KB
testcase_05 AC 496 ms
135,768 KB
testcase_06 AC 501 ms
135,624 KB
testcase_07 AC 492 ms
135,800 KB
testcase_08 AC 491 ms
135,880 KB
testcase_09 AC 49 ms
63,104 KB
testcase_10 AC 60 ms
64,896 KB
testcase_11 AC 54 ms
63,360 KB
testcase_12 AC 59 ms
64,384 KB
testcase_13 AC 47 ms
63,360 KB
testcase_14 AC 127 ms
86,556 KB
testcase_15 AC 125 ms
86,656 KB
testcase_16 AC 126 ms
86,272 KB
testcase_17 AC 133 ms
86,144 KB
testcase_18 AC 124 ms
86,284 KB
testcase_19 AC 125 ms
86,656 KB
testcase_20 AC 126 ms
86,400 KB
testcase_21 AC 40 ms
53,760 KB
testcase_22 AC 37 ms
52,864 KB
testcase_23 AC 41 ms
54,016 KB
testcase_24 AC 42 ms
54,272 KB
testcase_25 AC 41 ms
54,320 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 37 ms
52,324 KB
testcase_28 AC 37 ms
52,224 KB
testcase_29 AC 37 ms
52,352 KB
testcase_30 AC 37 ms
52,608 KB
testcase_31 AC 41 ms
53,504 KB
testcase_32 AC 44 ms
59,604 KB
testcase_33 AC 38 ms
52,608 KB
testcase_34 AC 47 ms
62,848 KB
testcase_35 AC 67 ms
82,304 KB
testcase_36 AC 62 ms
82,176 KB
testcase_37 AC 46 ms
66,816 KB
testcase_38 AC 71 ms
83,200 KB
testcase_39 AC 68 ms
82,944 KB
testcase_40 AC 726 ms
184,980 KB
testcase_41 AC 553 ms
179,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [list(str(input())) for _ in range(N)]
def getIndex(s):
  return ord(s)-96

l = []
for i in range(N):
  a,b = getIndex(S[i][0]),getIndex(S[i][-1])
  if a <= b:
    r = sorted(S[i])
    if S[i] == r:
      l.append((a,b,len(S[i])))

l.sort(key=lambda x: x[2])
l.sort(key=lambda x: x[1])
l.sort(key=lambda x: x[0])
N = len(l)

dp = [[0 for _ in range(27)] for _ in range(N+1)]
for i in range(N):
  a,b,c = l[i]
  for j in range(27):
    dp[i+1][j] = max(dp[i][j], dp[i+1][j])
  for j in range(a+1):
    dp[i+1][b] = max(dp[i][j]+c, dp[i][b],dp[i+1][b])
  
ans = 0
for i in range(N+1):
  for j in range(27):
    ans = max(ans,dp[i][j])
# print(l)
# for d in dp:
#   print(*d)
print(ans)
0