結果

問題 No.1512 作文
ユーザー ks2mks2m
提出日時 2021-05-21 21:39:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 84,488 KB
実行使用メモリ 73,960 KB
最終ジャッジ日時 2024-10-10 08:11:44
合計ジャッジ時間 16,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,112 KB
testcase_01 AC 131 ms
54,172 KB
testcase_02 AC 134 ms
54,104 KB
testcase_03 AC 132 ms
54,084 KB
testcase_04 AC 724 ms
67,440 KB
testcase_05 AC 749 ms
67,760 KB
testcase_06 AC 740 ms
67,904 KB
testcase_07 AC 737 ms
67,956 KB
testcase_08 AC 726 ms
68,052 KB
testcase_09 AC 206 ms
54,336 KB
testcase_10 AC 251 ms
54,820 KB
testcase_11 AC 207 ms
54,672 KB
testcase_12 AC 244 ms
54,452 KB
testcase_13 AC 208 ms
54,204 KB
testcase_14 AC 310 ms
59,384 KB
testcase_15 AC 318 ms
60,084 KB
testcase_16 AC 318 ms
59,592 KB
testcase_17 AC 314 ms
59,956 KB
testcase_18 AC 326 ms
59,768 KB
testcase_19 AC 315 ms
59,864 KB
testcase_20 AC 310 ms
59,576 KB
testcase_21 AC 170 ms
54,316 KB
testcase_22 AC 140 ms
54,016 KB
testcase_23 AC 171 ms
54,312 KB
testcase_24 AC 167 ms
54,484 KB
testcase_25 AC 169 ms
54,472 KB
testcase_26 AC 132 ms
54,244 KB
testcase_27 AC 131 ms
53,820 KB
testcase_28 AC 130 ms
53,868 KB
testcase_29 AC 130 ms
53,948 KB
testcase_30 AC 132 ms
54,276 KB
testcase_31 AC 137 ms
54,204 KB
testcase_32 AC 143 ms
53,952 KB
testcase_33 AC 139 ms
54,220 KB
testcase_34 AC 172 ms
54,376 KB
testcase_35 AC 222 ms
56,572 KB
testcase_36 AC 221 ms
56,328 KB
testcase_37 AC 199 ms
54,548 KB
testcase_38 AC 215 ms
54,700 KB
testcase_39 AC 222 ms
54,648 KB
testcase_40 AC 906 ms
73,960 KB
testcase_41 AC 695 ms
72,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		Obj[] arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.s = sc.next().toCharArray();
			arr[i] = o;
		}
		sc.close();

		Arrays.sort(arr, (o1, o2) -> {
			int s1 = o1.s.length;
			int s2 = o2.s.length;
			if (o1.s[s1 - 1] != o2.s[s2 - 1]) {
				return o1.s[s1 - 1] - o2.s[s2 - 1];
			}
			return o1.s[0] - o2.s[0];
		});
		int[] dp = new int[26];
		label:
		for (int i = 0; i < n; i++) {
			char[] t = arr[i].s;
			for (int j = 1; j < t.length; j++) {
				if (t[j - 1] > t[j]) {
					continue label;
				}
			}
			int d0 = t[0] - 'a';
			int d1 = t[t.length - 1] - 'a';
			for (int j = d0; j >= 0; j--) {
				dp[d1] = Math.max(dp[d1], dp[j] + t.length);
			}
		}
		int ans = 0;
		for (int i = 0; i < dp.length; i++) {
			ans = Math.max(ans, dp[i]);
		}
		System.out.println(ans);
	}

	static class Obj {
		char[] s;
	}
}
0