結果

問題 No.490 yukiソート
ユーザー 37zigen37zigen
提出日時 2017-03-10 23:07:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 80,376 KB
実行使用メモリ 59,996 KB
最終ジャッジ日時 2024-06-24 10:21:39
合計ジャッジ時間 11,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,952 KB
testcase_01 AC 157 ms
54,860 KB
testcase_02 AC 154 ms
55,188 KB
testcase_03 AC 154 ms
54,980 KB
testcase_04 AC 190 ms
54,968 KB
testcase_05 WA -
testcase_06 AC 199 ms
55,324 KB
testcase_07 WA -
testcase_08 AC 191 ms
55,528 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 192 ms
55,268 KB
testcase_12 AC 190 ms
55,164 KB
testcase_13 AC 191 ms
54,928 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 315 ms
57,728 KB
testcase_19 WA -
testcase_20 AC 315 ms
57,764 KB
testcase_21 WA -
testcase_22 AC 313 ms
57,756 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 157 ms
54,692 KB
testcase_26 AC 155 ms
55,064 KB
testcase_27 AC 151 ms
55,056 KB
testcase_28 AC 141 ms
54,500 KB
testcase_29 AC 155 ms
55,088 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 155 ms
55,300 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 153 ms
55,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextInt();
		}
		for (int i = 1; i < 2 * n - 3; ++i) {
			int s = 0;
			int t = i;
			while (t - s > 1) {
				if (t < n && a[s] > a[t]) {
					int d = a[s];
					a[s] = a[t];
					a[t] = d;
				}
				++s;
				--t;
			}
		}
		for (int i = 0; i < n; ++i) {
			System.out.print(a[i] + (i == n - 1 ? "\n" : " "));
		}
	}

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

}
0