結果

問題 No.1512 作文
ユーザー O2MTO2MT
提出日時 2021-05-21 22:29:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 170,640 KB
最終ジャッジ日時 2024-10-10 09:18:49
合計ジャッジ時間 7,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,576 KB
testcase_01 AC 38 ms
53,064 KB
testcase_02 AC 37 ms
52,960 KB
testcase_03 AC 36 ms
53,476 KB
testcase_04 AC 442 ms
124,328 KB
testcase_05 AC 441 ms
124,460 KB
testcase_06 AC 441 ms
124,664 KB
testcase_07 AC 437 ms
124,264 KB
testcase_08 AC 438 ms
124,340 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
52,528 KB
testcase_27 AC 37 ms
53,980 KB
testcase_28 AC 37 ms
53,196 KB
testcase_29 AC 37 ms
52,664 KB
testcase_30 AC 37 ms
53,120 KB
testcase_31 AC 39 ms
53,672 KB
testcase_32 AC 42 ms
59,176 KB
testcase_33 AC 38 ms
53,640 KB
testcase_34 AC 47 ms
61,816 KB
testcase_35 AC 39 ms
55,176 KB
testcase_36 AC 39 ms
54,004 KB
testcase_37 AC 37 ms
54,244 KB
testcase_38 AC 50 ms
63,832 KB
testcase_39 AC 48 ms
64,028 KB
testcase_40 AC 680 ms
170,640 KB
testcase_41 AC 479 ms
162,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [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:
    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+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