結果

問題 No.1512 作文
ユーザー raven7959raven7959
提出日時 2021-08-05 10:22:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,864 KB
最終ジャッジ日時 2024-09-16 15:16:24
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 65 ms
72,064 KB
testcase_10 AC 64 ms
72,576 KB
testcase_11 AC 65 ms
72,192 KB
testcase_12 AC 66 ms
72,832 KB
testcase_13 AC 62 ms
71,680 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 56 ms
61,696 KB
testcase_22 AC 55 ms
60,800 KB
testcase_23 AC 63 ms
64,256 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
51,712 KB
testcase_27 AC 42 ms
51,712 KB
testcase_28 AC 42 ms
51,712 KB
testcase_29 AC 41 ms
51,712 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 49 ms
59,136 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 58 ms
71,168 KB
testcase_36 AC 58 ms
71,552 KB
testcase_37 AC 52 ms
65,792 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 351 ms
132,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
DP=[[0 for _ in range(26)] for _ in range(N+1)]
for i in range(N):
  S=input()
  flg=True
  for k in range(26):
    DP[i+1][k]=DP[i][k]
  if len(S)!=1:
    for j in range(len(S)-1):
      if S[j+1]<S[j]:
        flg=False
  if flg:
    s=S[0]
    g=S[-1]
    DP[i+1][ord(g)-97]=max(DP[i][:ord(s)-96])+len(S)
print(max(DP[N]))
0