結果

問題 No.205 マージして辞書順最小
ユーザー GrenacheGrenache
提出日時 2015-05-08 23:06:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 867 bytes
コンパイル時間 2,544 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 46,180 KB
最終ジャッジ日時 2024-07-05 19:49:07
合計ジャッジ時間 6,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,364 KB
testcase_01 AC 114 ms
39,908 KB
testcase_02 AC 152 ms
42,896 KB
testcase_03 AC 153 ms
43,280 KB
testcase_04 AC 145 ms
42,236 KB
testcase_05 AC 142 ms
42,128 KB
testcase_06 AC 128 ms
41,240 KB
testcase_07 AC 193 ms
45,920 KB
testcase_08 AC 187 ms
46,132 KB
testcase_09 AC 191 ms
46,180 KB
testcase_10 AC 187 ms
41,960 KB
testcase_11 AC 196 ms
45,812 KB
testcase_12 AC 197 ms
46,060 KB
testcase_13 AC 188 ms
45,216 KB
testcase_14 AC 130 ms
40,980 KB
testcase_15 AC 130 ms
40,908 KB
testcase_16 AC 123 ms
41,248 KB
testcase_17 AC 128 ms
41,248 KB
testcase_18 AC 125 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder150508;
import java.util.Scanner;


public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		String[] s = new String[n];
		int len = 0;
		for (int i = 0; i < n; i++) {
			s[i] = sc.next();
			len += s[i].length();
		}

		StringBuffer ret = new StringBuffer();
		for (int i = 0; i < len; i++) {
			String min = "";
			int mini = -1;
			for (int j = 0; j < n; j++) {
				int sh = Math.min(min.length(), s[j].length());
				int comp = min.substring(0, sh).compareTo(s[j].substring(0, sh));
				if (comp == 0) {
					if (min.length() < s[j].length()) {
						min = s[j];
						mini = j;
					}
				} else if (comp > 0){
					min = s[j];
					mini = j;
				}
			}
			ret.append(min.charAt(0));
			s[mini] = s[mini].substring(1);
		}
		
		System.out.println(ret);

		sc.close();
	}
}
0