結果
問題 | No.1512 作文 |
ユーザー | otsuneko |
提出日時 | 2021-05-21 23:02:32 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 759 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 849,580 KB |
最終ジャッジ日時 | 2024-10-10 09:53:46 |
合計ジャッジ時間 | 3,179 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,836 KB |
testcase_01 | AC | 37 ms
53,012 KB |
testcase_02 | AC | 37 ms
53,572 KB |
testcase_03 | AC | 36 ms
53,516 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
ソースコード
from operator import itemgetter import sys input = lambda: sys.stdin.readline().rstrip() #INF = 10**18 N = int(input()) l = [] total = 0 for i in range(N): S = input() for i in range(len(S)-1): if S[i] > S[i+1]: break else: l.append([S[0],S[-1],-len(S),S]) total += len(S) l.sort(key=itemgetter(0,1,2)) dp = [[0]*(len(l)+1) for i in range(len(l)+1)] last = "a" for i in range(len(l)): flag = False for j in range(len(l)): if l[i][0] >= last: dp[i+1][j+1] = max(dp[i][j] - l[i][2], dp[i+1][j]) flag = True else: dp[i+1][j+1] = max(dp[i+1][j], dp[i][j+1]) if flag: last = l[i][1] print(dp[len(l)][len(l)])