結果

問題 No.490 yukiソート
ユーザー shinwisteriashinwisteria
提出日時 2017-03-20 16:10:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 45,968 KB
最終ジャッジ日時 2024-07-05 03:23:03
合計ジャッジ時間 11,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,864 KB
testcase_01 AC 137 ms
41,560 KB
testcase_02 AC 145 ms
41,344 KB
testcase_03 AC 142 ms
41,672 KB
testcase_04 AC 184 ms
42,280 KB
testcase_05 AC 193 ms
42,500 KB
testcase_06 AC 184 ms
42,496 KB
testcase_07 AC 188 ms
42,252 KB
testcase_08 AC 194 ms
42,632 KB
testcase_09 AC 189 ms
42,372 KB
testcase_10 AC 184 ms
42,112 KB
testcase_11 AC 190 ms
42,244 KB
testcase_12 AC 188 ms
42,328 KB
testcase_13 AC 181 ms
42,084 KB
testcase_14 AC 303 ms
44,548 KB
testcase_15 AC 296 ms
44,920 KB
testcase_16 AC 302 ms
44,976 KB
testcase_17 AC 303 ms
44,524 KB
testcase_18 AC 308 ms
44,592 KB
testcase_19 AC 292 ms
44,680 KB
testcase_20 AC 292 ms
44,856 KB
testcase_21 AC 299 ms
45,968 KB
testcase_22 AC 315 ms
44,984 KB
testcase_23 AC 296 ms
44,624 KB
testcase_24 AC 140 ms
41,988 KB
testcase_25 AC 142 ms
42,068 KB
testcase_26 AC 140 ms
41,372 KB
testcase_27 AC 132 ms
40,492 KB
testcase_28 AC 133 ms
41,332 KB
testcase_29 AC 139 ms
41,688 KB
testcase_30 AC 122 ms
40,480 KB
testcase_31 AC 139 ms
41,728 KB
testcase_32 AC 140 ms
42,040 KB
testcase_33 AC 148 ms
41,648 KB
testcase_34 AC 142 ms
41,464 KB
testcase_35 AC 125 ms
40,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukisort {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int n = s.nextInt(),med;
		int[] a = new int[n];
		for(int i = 0;i < n;i++){
			a[i] = s.nextInt();
		}
		s.close();
		
		for(int i = 1;i < 2*n-3;i++){
			for(int j = 0;j < (i+1)/2;j++){
				if(i-j >= 0 &&i -j <n){
					med = Integer.max(a[j], a[i-j]);
					if(Integer.compare(a[j], a[i-j]) >0){
						a[j] = a[i-j];
						a[i-j] = med;
					}
				}
			}
		}
		for(int b:a){
			System.out.print(b + " ");
		}
		System.out.println();

	}

}
0