結果

問題 No.1512 作文
ユーザー O2MTO2MT
提出日時 2021-05-21 22:17:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 165,552 KB
最終ジャッジ日時 2024-04-18 15:46:09
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,760 KB
testcase_02 AC 36 ms
51,932 KB
testcase_03 AC 35 ms
52,872 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
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
53,520 KB
testcase_27 AC 35 ms
52,604 KB
testcase_28 AC 35 ms
53,068 KB
testcase_29 AC 35 ms
52,932 KB
testcase_30 AC 36 ms
52,760 KB
testcase_31 AC 36 ms
53,084 KB
testcase_32 AC 41 ms
60,404 KB
testcase_33 AC 35 ms
53,092 KB
testcase_34 AC 45 ms
60,352 KB
testcase_35 AC 34 ms
54,996 KB
testcase_36 AC 36 ms
54,292 KB
testcase_37 AC 34 ms
53,984 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 424 ms
159,212 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][b],dp[i+1][j],dp[i+1][b])
ans = 0
for i in range(N+1):
  for j in range(27):
    ans = max(ans,dp[i][j])

# for d in dp:
#   print(*d)
print(ans)
0