結果

問題 No.205 マージして辞書順最小
ユーザー ぴろずぴろず
提出日時 2015-05-08 22:41:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-07-05 19:03:16
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
39,892 KB
testcase_01 AC 126 ms
41,196 KB
testcase_02 AC 139 ms
41,184 KB
testcase_03 AC 161 ms
41,544 KB
testcase_04 AC 147 ms
41,588 KB
testcase_05 AC 153 ms
41,620 KB
testcase_06 AC 117 ms
39,832 KB
testcase_07 AC 150 ms
41,488 KB
testcase_08 AC 149 ms
41,548 KB
testcase_09 AC 139 ms
40,656 KB
testcase_10 AC 132 ms
40,972 KB
testcase_11 AC 147 ms
41,556 KB
testcase_12 AC 146 ms
41,396 KB
testcase_13 AC 148 ms
41,424 KB
testcase_14 AC 120 ms
40,072 KB
testcase_15 AC 133 ms
41,204 KB
testcase_16 AC 131 ms
40,960 KB
testcase_17 AC 126 ms
41,152 KB
testcase_18 AC 129 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no205;

import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		PriorityQueue<String> pq = new PriorityQueue<>();
		for(int i=0;i<n;i++) {
			pq.add(sc.next() + "{");
		}
		StringBuilder ans = new StringBuilder();
		while(!pq.isEmpty()) {
			String min = pq.poll();
			ans.append(min.charAt(0));
			if (min.length() > 2) {
				pq.offer(min.substring(1));
			}
		}
		System.out.println(ans.toString());
	}

}
0