結果

問題 No.490 yukiソート
ユーザー 37zigen37zigen
提出日時 2017-03-10 23:01:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 3,744 ms
コンパイル使用メモリ 78,360 KB
実行使用メモリ 61,180 KB
最終ジャッジ日時 2023-09-06 15:54:02
合計ジャッジ時間 11,126 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
57,192 KB
testcase_01 WA -
testcase_02 AC 158 ms
57,088 KB
testcase_03 AC 167 ms
56,872 KB
testcase_04 AC 210 ms
57,768 KB
testcase_05 AC 209 ms
57,804 KB
testcase_06 AC 204 ms
57,724 KB
testcase_07 AC 201 ms
57,544 KB
testcase_08 AC 209 ms
57,756 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 155 ms
57,048 KB
testcase_25 AC 154 ms
57,268 KB
testcase_26 AC 155 ms
56,992 KB
testcase_27 AC 156 ms
56,924 KB
testcase_28 AC 154 ms
57,080 KB
testcase_29 AC 155 ms
56,988 KB
testcase_30 AC 157 ms
57,060 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
		}
		int max = -1;
		for (int i = 0; i < n; ++i) {
			max = Math.max(i, a[i]);
		}
		boolean f = (a[n - 1] == max);
		Arrays.sort(a);
		if (f) {
			int d = a[n - 1];
			a[n - 1] = a[n - 2];
			a[n - 1] = d;
		}
		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