結果

問題 No.205 マージして辞書順最小
ユーザー 37zigen37zigen
提出日時 2016-10-07 12:08:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 3,290 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 86,384 KB
実行使用メモリ 57,776 KB
最終ジャッジ日時 2023-08-14 01:14:20
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
52,576 KB
testcase_01 AC 65 ms
53,700 KB
testcase_02 AC 100 ms
52,384 KB
testcase_03 AC 89 ms
53,128 KB
testcase_04 AC 92 ms
53,772 KB
testcase_05 AC 87 ms
54,036 KB
testcase_06 AC 79 ms
52,628 KB
testcase_07 AC 112 ms
55,908 KB
testcase_08 AC 114 ms
55,664 KB
testcase_09 AC 93 ms
54,848 KB
testcase_10 AC 108 ms
55,752 KB
testcase_11 AC 123 ms
55,760 KB
testcase_12 AC 114 ms
57,776 KB
testcase_13 AC 102 ms
56,140 KB
testcase_14 AC 85 ms
53,628 KB
testcase_15 AC 72 ms
51,184 KB
testcase_16 AC 82 ms
52,844 KB
testcase_17 AC 68 ms
52,112 KB
testcase_18 AC 78 ms
53,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No200番台;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.PriorityQueue;

public class Q205 {
	static InputStream is;
	static PrintWriter out;
	static String INPUT = "";

	public static void main(String[] args) throws Exception {
		new Q205().run();
	}

	void solver() {
		int n=ni();
		PriorityQueue<String> que=new PriorityQueue<>();
		for(int i=0;i<n;i++){
			que.add(ns()+"{");
		}
		String ans="";
		while(!que.isEmpty()){
			String s=que.poll();
			if(s.equals("{"))
				break;
			ans=ans+s.charAt(0);
			que.add(s.substring(1));
		}
		out.println(ans);
	}

	void run() {
		is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes());
		out = new PrintWriter(System.out);
		solver();
		out.flush();

	}

	static long nl() {
		try {
			long num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static char nc() {
		try {
			int b = skip();
			if (b == -1)
				return 0;
			return (char) b;
		} catch (IOException e) {
		}
		return 0;
	}

	static double nd() {
		try {
			return Double.parseDouble(ns());
		} catch (Exception e) {
		}
		return 0;
	}

	static String ns() {
		try {
			int b = skip();
			StringBuilder sb = new StringBuilder();
			if (b == -1)
				return "";
			sb.append((char) b);
			while (true) {
				b = is.read();
				if (b == -1)
					return sb.toString();
				if (b <= ' ')
					return sb.toString();
				sb.append((char) b);
			}
		} catch (IOException e) {
		}
		return "";
	}

	public static char[] ns(int n) {
		char[] buf = new char[n];
		try {
			int b = skip(), p = 0;
			if (b == -1)
				return null;
			buf[p++] = (char) b;
			while (p < n) {
				b = is.read();
				if (b == -1 || b <= ' ')
					break;
				buf[p++] = (char) b;
			}
			return Arrays.copyOf(buf, p);
		} catch (IOException e) {
		}
		return null;
	}

	public static byte[] nse(int n) {
		byte[] buf = new byte[n];
		try {
			int b = skip();
			if (b == -1)
				return null;
			is.read(buf);
			return buf;
		} catch (IOException e) {
		}
		return null;
	}

	static int skip() throws IOException {
		int b;
		while ((b = is.read()) != -1 && !(b >= 33 && b <= 126))
			;
		return b;
	}

	static boolean eof() {
		try {
			is.mark(1000);
			int b = skip();
			is.reset();
			return b == -1;
		} catch (IOException e) {
			return true;
		}
	}

	static int ni() {
		try {
			int num = 0;
			boolean minus = false;
			while ((num = is.read()) != -1 && !((num >= '0' && num <= '9') || num == '-'))
				;
			if (num == '-') {
				num = 0;
				minus = true;
			} else {
				num -= '0';
			}

			while (true) {
				int b = is.read();
				if (b >= '0' && b <= '9') {
					num = num * 10 + (b - '0');
				} else {
					return minus ? -num : num;
				}
			}
		} catch (IOException e) {
		}
		return -1;
	}

	static void tr(Object... o) {
		System.out.println(Arrays.deepToString(o));
	}
}
0