結果

問題 No.1512 作文
ユーザー kozykozy
提出日時 2021-05-21 21:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 210,824 KB
最終ジャッジ日時 2024-10-10 08:18:20
合計ジャッジ時間 7,247 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,100 KB
testcase_01 AC 39 ms
52,700 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 39 ms
53,572 KB
testcase_04 AC 511 ms
145,676 KB
testcase_05 AC 509 ms
145,412 KB
testcase_06 AC 512 ms
145,924 KB
testcase_07 AC 499 ms
145,528 KB
testcase_08 AC 510 ms
146,080 KB
testcase_09 AC 41 ms
53,936 KB
testcase_10 AC 40 ms
53,924 KB
testcase_11 AC 41 ms
54,532 KB
testcase_12 AC 41 ms
54,324 KB
testcase_13 AC 40 ms
53,804 KB
testcase_14 AC 115 ms
77,524 KB
testcase_15 AC 138 ms
77,216 KB
testcase_16 AC 115 ms
77,368 KB
testcase_17 AC 110 ms
76,468 KB
testcase_18 AC 113 ms
76,708 KB
testcase_19 AC 115 ms
77,500 KB
testcase_20 AC 112 ms
77,240 KB
testcase_21 AC 41 ms
53,956 KB
testcase_22 AC 39 ms
53,008 KB
testcase_23 AC 42 ms
54,556 KB
testcase_24 AC 41 ms
53,456 KB
testcase_25 AC 42 ms
54,208 KB
testcase_26 AC 40 ms
52,524 KB
testcase_27 AC 40 ms
52,260 KB
testcase_28 AC 39 ms
53,312 KB
testcase_29 AC 40 ms
52,436 KB
testcase_30 AC 40 ms
52,464 KB
testcase_31 AC 46 ms
60,236 KB
testcase_32 AC 44 ms
59,156 KB
testcase_33 AC 45 ms
58,168 KB
testcase_34 AC 53 ms
63,664 KB
testcase_35 AC 48 ms
72,908 KB
testcase_36 AC 48 ms
72,908 KB
testcase_37 AC 47 ms
66,828 KB
testcase_38 AC 58 ms
75,756 KB
testcase_39 AC 67 ms
75,808 KB
testcase_40 AC 735 ms
205,972 KB
testcase_41 AC 477 ms
210,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=list()
N=int(input())
for i in range(N):
  S=input()
  if len(S)==1:
    L.append((ord(S[0])-97,ord(S[-1])-97,1))
  for j in range(1,len(S)):
    if S[j-1]>S[j]:
      break
    if j==len(S)-1:
      L.append((ord(S[0])-97,ord(S[-1])-97,len(S)))
N=len(L)
L.sort()
#i番目までの数字でjで終わる奴の個数の最大dp[i][j]
dp=[[0]*26 for i in range(N+1)]
maxs=[[0]*26 for i in range(N+1)]
for i in range(1,N+1):
  a,b,c=L[i-1]
  for j in range(26):
    if j==b:
      dp[i][j]=max(dp[i-1][j],maxs[i-1][a]+c)
    else:
      dp[i][j]=dp[i-1][j]
    if j!=0:
      maxs[i][j]=max(maxs[i][j-1],dp[i][j])
    else:
      maxs[i][j]=dp[i][j]
print(max(dp[-1]))
0