結果

問題 No.1512 作文
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-28 20:15:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 145,876 KB
最終ジャッジ日時 2024-07-01 15:15:42
合計ジャッジ時間 9,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 41 ms
52,992 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 766 ms
125,904 KB
testcase_05 WA -
testcase_06 AC 765 ms
126,032 KB
testcase_07 AC 785 ms
126,288 KB
testcase_08 AC 797 ms
125,908 KB
testcase_09 AC 76 ms
66,688 KB
testcase_10 AC 77 ms
67,072 KB
testcase_11 AC 74 ms
67,072 KB
testcase_12 AC 80 ms
67,456 KB
testcase_13 AC 76 ms
67,072 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 49 ms
54,912 KB
testcase_22 AC 48 ms
53,248 KB
testcase_23 AC 49 ms
55,808 KB
testcase_24 AC 48 ms
56,064 KB
testcase_25 AC 45 ms
55,680 KB
testcase_26 AC 41 ms
53,760 KB
testcase_27 AC 43 ms
53,120 KB
testcase_28 AC 42 ms
53,760 KB
testcase_29 AC 41 ms
53,120 KB
testcase_30 AC 44 ms
53,120 KB
testcase_31 AC 43 ms
53,888 KB
testcase_32 AC 45 ms
54,376 KB
testcase_33 AC 43 ms
53,888 KB
testcase_34 AC 46 ms
56,448 KB
testcase_35 AC 70 ms
81,792 KB
testcase_36 AC 73 ms
81,920 KB
testcase_37 AC 53 ms
68,096 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 987 ms
145,876 KB
testcase_41 AC 418 ms
143,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
from collections import defaultdict
d = defaultdict(int)
S = []
d["A"] = 0
for _ in range(n):
    s = list(input())
    S.append([s,s[0],s[-1]])
S.sort(key=lambda x:(x[1],x[2]))
for _ in range(n):
    s,xx,yy = S[_]
    if s != sorted(s):
        continue
    d_k = list(d.keys())
    for k in d_k:
        if s[0] < k:
            pass
        else:
            d[s[-1]] = max(d[k] + len(s),d[s[-1]])
    d[s[-1]] = max(len(s),d[s[-1]])        
print(max(d.values()))
0