結果

問題 No.1512 作文
ユーザー wolgnikwolgnik
提出日時 2021-05-21 21:33:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 102,096 KB
最終ジャッジ日時 2024-10-10 07:58:16
合計ジャッジ時間 4,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,620 KB
testcase_02 AC 36 ms
52,696 KB
testcase_03 AC 36 ms
52,488 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 70 ms
67,440 KB
testcase_10 AC 74 ms
67,044 KB
testcase_11 AC 70 ms
67,404 KB
testcase_12 AC 76 ms
68,508 KB
testcase_13 AC 76 ms
67,976 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,284 KB
testcase_22 AC 38 ms
54,484 KB
testcase_23 AC 44 ms
54,932 KB
testcase_24 AC 43 ms
54,056 KB
testcase_25 WA -
testcase_26 AC 37 ms
53,572 KB
testcase_27 AC 37 ms
51,888 KB
testcase_28 AC 37 ms
52,004 KB
testcase_29 AC 39 ms
52,616 KB
testcase_30 AC 36 ms
52,220 KB
testcase_31 AC 40 ms
58,992 KB
testcase_32 AC 41 ms
59,492 KB
testcase_33 AC 39 ms
57,900 KB
testcase_34 AC 43 ms
61,392 KB
testcase_35 AC 68 ms
83,716 KB
testcase_36 AC 68 ms
84,588 KB
testcase_37 AC 50 ms
73,936 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 251 ms
101,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = []
for _ in range(N):
  S = list(input())[: -1]
  if sorted(S) == S: a.append(S)

dp = [0] * 26

for S in a:
  l = ord(min(S)) - ord("a")
  r = ord(max(S)) - ord("a")
  for i in range(l, -1, -1): dp[r] = max(dp[r], dp[i] + len(S))
print(max(dp))
0