結果

問題 No.490 yukiソート
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-06 14:34:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 76,296 KB
実行使用メモリ 45,272 KB
最終ジャッジ日時 2024-09-18 22:22:40
合計ジャッジ時間 10,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,108 KB
testcase_01 AC 123 ms
42,088 KB
testcase_02 AC 140 ms
42,572 KB
testcase_03 AC 139 ms
42,188 KB
testcase_04 AC 176 ms
42,880 KB
testcase_05 AC 184 ms
42,792 KB
testcase_06 AC 187 ms
42,860 KB
testcase_07 AC 184 ms
43,080 KB
testcase_08 AC 179 ms
42,584 KB
testcase_09 AC 172 ms
43,040 KB
testcase_10 AC 189 ms
42,796 KB
testcase_11 AC 198 ms
42,788 KB
testcase_12 AC 185 ms
42,508 KB
testcase_13 AC 178 ms
42,584 KB
testcase_14 AC 299 ms
45,040 KB
testcase_15 AC 292 ms
45,116 KB
testcase_16 AC 292 ms
45,020 KB
testcase_17 AC 286 ms
44,788 KB
testcase_18 AC 287 ms
45,272 KB
testcase_19 AC 301 ms
45,224 KB
testcase_20 AC 281 ms
44,976 KB
testcase_21 AC 324 ms
45,156 KB
testcase_22 AC 289 ms
44,912 KB
testcase_23 AC 298 ms
44,920 KB
testcase_24 AC 134 ms
42,136 KB
testcase_25 AC 140 ms
42,588 KB
testcase_26 AC 136 ms
42,080 KB
testcase_27 AC 135 ms
42,020 KB
testcase_28 AC 144 ms
42,464 KB
testcase_29 AC 143 ms
42,132 KB
testcase_30 AC 139 ms
42,372 KB
testcase_31 AC 148 ms
42,620 KB
testcase_32 AC 141 ms
42,388 KB
testcase_33 AC 144 ms
42,252 KB
testcase_34 AC 145 ms
42,388 KB
testcase_35 AC 136 ms
42,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int[] ar = new int[n];
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
		}
		
		int temp;
		for (int i=0; i<2*n-3; i++) {
			for (int p=0; p<=i; p++) {
				int q = i-p;
				if (p>=n || q>=n) {continue;}
				
				if (ar[p]<ar[q]) {
					temp = ar[p];
					ar[p] = ar[q];
					ar[q] = temp;
				}
			}
		}
		
		for (int i=0; i<n; i++) {
			out.print((i==0?"":" ")+ar[i]);
		}
		out.println();
	}
}
0