結果

問題 No.490 yukiソート
ユーザー tookunn_1213tookunn_1213
提出日時 2017-03-10 22:30:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 1,895 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 52,260 KB
最終ジャッジ日時 2023-09-06 15:34:24
合計ジャッジ時間 5,552 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
49,268 KB
testcase_01 AC 40 ms
49,436 KB
testcase_02 AC 39 ms
49,128 KB
testcase_03 AC 39 ms
49,036 KB
testcase_04 AC 58 ms
50,808 KB
testcase_05 AC 59 ms
50,984 KB
testcase_06 AC 63 ms
51,208 KB
testcase_07 AC 60 ms
51,292 KB
testcase_08 AC 59 ms
50,248 KB
testcase_09 AC 57 ms
50,848 KB
testcase_10 AC 58 ms
50,764 KB
testcase_11 AC 58 ms
50,876 KB
testcase_12 AC 60 ms
50,924 KB
testcase_13 AC 59 ms
50,120 KB
testcase_14 AC 102 ms
52,260 KB
testcase_15 AC 103 ms
51,588 KB
testcase_16 AC 101 ms
51,540 KB
testcase_17 AC 101 ms
51,564 KB
testcase_18 AC 102 ms
51,808 KB
testcase_19 AC 101 ms
51,456 KB
testcase_20 AC 102 ms
51,624 KB
testcase_21 AC 105 ms
51,860 KB
testcase_22 AC 105 ms
51,504 KB
testcase_23 AC 106 ms
51,652 KB
testcase_24 AC 41 ms
49,436 KB
testcase_25 AC 43 ms
49,556 KB
testcase_26 AC 41 ms
47,216 KB
testcase_27 AC 39 ms
49,260 KB
testcase_28 AC 39 ms
49,220 KB
testcase_29 AC 40 ms
49,232 KB
testcase_30 AC 40 ms
49,196 KB
testcase_31 AC 40 ms
49,260 KB
testcase_32 AC 40 ms
49,188 KB
testcase_33 AC 41 ms
49,192 KB
testcase_34 AC 40 ms
49,128 KB
testcase_35 AC 40 ms
49,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
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();
		}
		for (int i = 0; i < 2*N-3; i++) {
			for (int p = 0; p < N; p++) {
				int q = i - p;
				if (q < N && p < q) {
					if (a[p] > a[q]) {
						int tmp = a[p];
						a[p] = a[q];
						a[q] = tmp;
					}
				}
			}
		}

		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