結果

問題 No.1512 作文
ユーザー ks2mks2m
提出日時 2021-05-21 21:28:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 745 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 65,836 KB
最終ジャッジ日時 2024-10-10 07:45:17
合計ジャッジ時間 14,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
41,172 KB
testcase_02 AC 118 ms
40,236 KB
testcase_03 AC 129 ms
41,200 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 196 ms
42,380 KB
testcase_10 AC 205 ms
42,628 KB
testcase_11 AC 205 ms
42,736 KB
testcase_12 AC 216 ms
42,736 KB
testcase_13 AC 209 ms
42,180 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 161 ms
41,008 KB
testcase_22 AC 139 ms
41,264 KB
testcase_23 AC 168 ms
41,564 KB
testcase_24 AC 169 ms
41,284 KB
testcase_25 WA -
testcase_26 AC 129 ms
40,928 KB
testcase_27 AC 128 ms
41,132 KB
testcase_28 AC 132 ms
41,336 KB
testcase_29 AC 129 ms
41,032 KB
testcase_30 AC 133 ms
41,132 KB
testcase_31 AC 129 ms
39,840 KB
testcase_32 AC 139 ms
41,512 KB
testcase_33 AC 135 ms
41,428 KB
testcase_34 AC 164 ms
41,400 KB
testcase_35 AC 212 ms
43,044 KB
testcase_36 AC 211 ms
42,984 KB
testcase_37 AC 199 ms
42,176 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 746 ms
65,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		String[] s = new String[n];
		for (int i = 0; i < n; i++) {
			s[i] = sc.next();
		}
		sc.close();

		int[] dp = new int[26];
		label:
		for (int i = 0; i < n; i++) {
			char[] t = s[i].toCharArray();
			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);
	}
}
0