結果

問題 No.490 yukiソート
ユーザー omi_UTomi_UT
提出日時 2017-03-10 22:38:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 78,340 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-24 10:07:20
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
51,184 KB
testcase_01 AC 73 ms
50,952 KB
testcase_02 AC 75 ms
51,100 KB
testcase_03 AC 76 ms
50,700 KB
testcase_04 AC 102 ms
51,480 KB
testcase_05 AC 102 ms
51,620 KB
testcase_06 AC 102 ms
51,376 KB
testcase_07 AC 102 ms
51,396 KB
testcase_08 AC 103 ms
51,536 KB
testcase_09 AC 102 ms
51,656 KB
testcase_10 AC 97 ms
51,684 KB
testcase_11 AC 101 ms
51,784 KB
testcase_12 AC 100 ms
51,464 KB
testcase_13 AC 112 ms
51,444 KB
testcase_14 AC 166 ms
52,068 KB
testcase_15 AC 164 ms
52,220 KB
testcase_16 AC 166 ms
52,524 KB
testcase_17 AC 174 ms
52,184 KB
testcase_18 AC 167 ms
52,520 KB
testcase_19 AC 167 ms
54,232 KB
testcase_20 AC 167 ms
52,280 KB
testcase_21 AC 167 ms
52,368 KB
testcase_22 AC 166 ms
52,168 KB
testcase_23 AC 174 ms
52,308 KB
testcase_24 AC 76 ms
51,148 KB
testcase_25 AC 75 ms
50,864 KB
testcase_26 AC 75 ms
50,816 KB
testcase_27 AC 76 ms
50,980 KB
testcase_28 AC 73 ms
51,072 KB
testcase_29 AC 74 ms
51,136 KB
testcase_30 AC 76 ms
50,796 KB
testcase_31 AC 74 ms
50,772 KB
testcase_32 AC 73 ms
51,220 KB
testcase_33 AC 73 ms
50,688 KB
testcase_34 AC 73 ms
51,100 KB
testcase_35 AC 74 ms
50,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args)throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int n = Integer.parseInt(br.readLine());
		String line[] = br.readLine().split(" ");
		int[] a = new int [n];

		for (int i=0;i<n;i++){
			a[i] = Integer.parseInt(line[i]);
		}

		for(int i=0; i<2*n-3; i++){
			for(int p=0; 2*p<i; p++){
				if(i-p<n){
				if(a[p] > a[i-p]){
					int temp = a[p];
					a[p] = a[i-p];
					a[i-p] = temp;
				}}
			}
		}

		System.out.print(a[0]);
		for(int i=1; i<n; i++){
			System.out.print(" "+a[i]);
		}
		System.out.println();
	}
}
0