結果

問題 No.490 yukiソート
ユーザー Mcpu3Mcpu3
提出日時 2018-09-01 19:59:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 45,980 KB
最終ジャッジ日時 2024-09-19 18:38:23
合計ジャッジ時間 9,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,676 KB
testcase_01 AC 114 ms
41,600 KB
testcase_02 AC 132 ms
41,564 KB
testcase_03 AC 131 ms
41,984 KB
testcase_04 AC 179 ms
42,144 KB
testcase_05 AC 174 ms
42,144 KB
testcase_06 AC 165 ms
42,016 KB
testcase_07 AC 176 ms
42,176 KB
testcase_08 AC 167 ms
42,428 KB
testcase_09 AC 177 ms
42,024 KB
testcase_10 AC 165 ms
42,128 KB
testcase_11 AC 168 ms
42,016 KB
testcase_12 AC 172 ms
42,192 KB
testcase_13 AC 179 ms
42,008 KB
testcase_14 AC 329 ms
44,476 KB
testcase_15 AC 266 ms
44,348 KB
testcase_16 AC 273 ms
44,372 KB
testcase_17 AC 294 ms
44,416 KB
testcase_18 AC 283 ms
44,480 KB
testcase_19 AC 273 ms
44,660 KB
testcase_20 AC 269 ms
45,980 KB
testcase_21 AC 278 ms
44,188 KB
testcase_22 AC 282 ms
44,448 KB
testcase_23 AC 296 ms
44,588 KB
testcase_24 AC 136 ms
41,420 KB
testcase_25 AC 141 ms
41,780 KB
testcase_26 AC 132 ms
41,692 KB
testcase_27 AC 129 ms
40,576 KB
testcase_28 AC 131 ms
41,588 KB
testcase_29 AC 128 ms
41,548 KB
testcase_30 AC 114 ms
41,712 KB
testcase_31 AC 119 ms
40,364 KB
testcase_32 AC 133 ms
41,560 KB
testcase_33 AC 118 ms
41,552 KB
testcase_34 AC 131 ms
41,288 KB
testcase_35 AC 135 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),a[]=new int[2000],t,i,j;
		for(i=0;i<n;i++) a[i]=sc.nextInt();
		sc.close();
		for(i=1;i<2*n-3;i++) {
			for(j=0;j<n;j++) {
				if(i-j>n-1||0>i-j) continue;
				if(a[i-j]>a[j]) {
					t=a[j];
					a[j]=a[i-j];
					a[i-j]=t;
				}
			}
		}
		for(i=0;i<n-1;i++) System.out.print(a[i]+" ");
		System.out.print(a[n-1]);
	}
}
0