結果

問題 No.1512 作文
ユーザー ks2mks2m
提出日時 2021-05-21 21:32:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 2,953 ms
コンパイル使用メモリ 80,264 KB
実行使用メモリ 74,092 KB
最終ジャッジ日時 2024-10-10 07:56:41
合計ジャッジ時間 17,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,760 KB
testcase_01 AC 134 ms
53,856 KB
testcase_02 AC 138 ms
53,868 KB
testcase_03 AC 135 ms
53,892 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 218 ms
54,420 KB
testcase_10 AC 270 ms
54,740 KB
testcase_11 AC 221 ms
54,328 KB
testcase_12 AC 272 ms
54,560 KB
testcase_13 AC 275 ms
54,320 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 178 ms
54,256 KB
testcase_22 AC 147 ms
54,256 KB
testcase_23 AC 181 ms
54,204 KB
testcase_24 AC 180 ms
54,516 KB
testcase_25 AC 178 ms
54,660 KB
testcase_26 AC 139 ms
53,864 KB
testcase_27 AC 138 ms
54,056 KB
testcase_28 AC 141 ms
54,136 KB
testcase_29 AC 137 ms
53,996 KB
testcase_30 AC 139 ms
54,196 KB
testcase_31 AC 144 ms
54,096 KB
testcase_32 AC 148 ms
54,360 KB
testcase_33 AC 141 ms
53,768 KB
testcase_34 AC 181 ms
54,236 KB
testcase_35 AC 230 ms
56,548 KB
testcase_36 AC 228 ms
56,496 KB
testcase_37 AC 204 ms
54,048 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 878 ms
74,092 KB
testcase_41 AC 783 ms
70,000 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) -> o1.s[o1.s.length - 1] - o2.s[o2.s.length - 1]);
		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