結果

問題 No.1512 作文
ユーザー wolgnikwolgnik
提出日時 2021-05-21 21:34:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 126,156 KB
最終ジャッジ日時 2024-10-10 08:04:46
合計ジャッジ時間 6,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,236 KB
testcase_01 AC 37 ms
52,940 KB
testcase_02 AC 36 ms
52,204 KB
testcase_03 AC 36 ms
52,196 KB
testcase_04 AC 420 ms
102,388 KB
testcase_05 AC 427 ms
102,444 KB
testcase_06 AC 421 ms
103,400 KB
testcase_07 AC 420 ms
103,000 KB
testcase_08 AC 426 ms
102,500 KB
testcase_09 AC 69 ms
68,472 KB
testcase_10 AC 73 ms
68,048 KB
testcase_11 AC 72 ms
68,184 KB
testcase_12 AC 75 ms
68,004 KB
testcase_13 AC 73 ms
69,244 KB
testcase_14 AC 83 ms
76,132 KB
testcase_15 AC 83 ms
76,392 KB
testcase_16 AC 84 ms
76,728 KB
testcase_17 AC 83 ms
76,440 KB
testcase_18 AC 83 ms
76,708 KB
testcase_19 AC 87 ms
76,800 KB
testcase_20 AC 83 ms
76,504 KB
testcase_21 AC 39 ms
53,620 KB
testcase_22 AC 39 ms
53,048 KB
testcase_23 AC 38 ms
53,688 KB
testcase_24 AC 39 ms
54,556 KB
testcase_25 AC 39 ms
53,836 KB
testcase_26 AC 37 ms
53,224 KB
testcase_27 AC 37 ms
52,400 KB
testcase_28 AC 36 ms
52,904 KB
testcase_29 AC 36 ms
52,592 KB
testcase_30 AC 37 ms
53,832 KB
testcase_31 AC 41 ms
59,492 KB
testcase_32 AC 41 ms
59,708 KB
testcase_33 AC 41 ms
58,984 KB
testcase_34 AC 44 ms
61,760 KB
testcase_35 AC 71 ms
83,684 KB
testcase_36 AC 71 ms
83,584 KB
testcase_37 AC 52 ms
73,108 KB
testcase_38 AC 71 ms
80,700 KB
testcase_39 AC 65 ms
80,380 KB
testcase_40 AC 590 ms
126,156 KB
testcase_41 AC 355 ms
124,372 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
a.sort(key = lambda x: (max(x), min(x)))
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