結果

問題 No.1512 作文
ユーザー O2MTO2MT
提出日時 2021-05-21 23:24:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 584 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 180,984 KB
最終ジャッジ日時 2024-10-10 10:12:27
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,688 KB
testcase_02 AC 36 ms
53,872 KB
testcase_03 AC 36 ms
53,416 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 46 ms
62,464 KB
testcase_10 AC 59 ms
64,128 KB
testcase_11 AC 53 ms
63,744 KB
testcase_12 AC 56 ms
64,256 KB
testcase_13 AC 48 ms
63,744 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 39 ms
53,120 KB
testcase_22 AC 37 ms
52,864 KB
testcase_23 AC 39 ms
54,528 KB
testcase_24 AC 41 ms
54,400 KB
testcase_25 WA -
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 36 ms
52,096 KB
testcase_28 AC 36 ms
52,480 KB
testcase_29 AC 36 ms
51,712 KB
testcase_30 AC 38 ms
52,352 KB
testcase_31 AC 42 ms
53,120 KB
testcase_32 AC 42 ms
59,392 KB
testcase_33 AC 36 ms
52,864 KB
testcase_34 AC 47 ms
62,848 KB
testcase_35 AC 61 ms
81,920 KB
testcase_36 AC 62 ms
81,664 KB
testcase_37 AC 46 ms
66,816 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 503 ms
174,788 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])))

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(ans)
0