結果

問題 No.490 yukiソート
ユーザー tookunn_1213tookunn_1213
提出日時 2017-03-10 22:23:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,704 bytes
コンパイル時間 3,874 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 51,608 KB
最終ジャッジ日時 2023-09-06 13:51:28
合計ジャッジ時間 6,301 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
49,220 KB
testcase_01 WA -
testcase_02 AC 37 ms
49,064 KB
testcase_03 AC 37 ms
49,064 KB
testcase_04 AC 44 ms
49,140 KB
testcase_05 AC 45 ms
49,120 KB
testcase_06 AC 44 ms
49,304 KB
testcase_07 AC 43 ms
49,224 KB
testcase_08 AC 45 ms
49,012 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 40 ms
49,060 KB
testcase_25 AC 40 ms
49,328 KB
testcase_26 AC 38 ms
49,116 KB
testcase_27 AC 40 ms
49,132 KB
testcase_28 AC 39 ms
49,248 KB
testcase_29 AC 37 ms
49,216 KB
testcase_30 AC 35 ms
49,392 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {
	int N;
	int[] a;
	public void solve() {
		N = nextInt();
		a = new int[N];
		for(int i = 0;i < N;i++){
			a[i] = nextInt();
		}
		Arrays.sort(a);

		for(int i = 0;i < N;i++){
			if(i != 0)out.print(" ");
			out.print(a[i]);
		}
		out.println();
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0