結果

問題 No.490 yukiソート
ユーザー tsunabittsunabit
提出日時 2019-06-12 00:43:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 4,039 ms
コンパイル使用メモリ 86,040 KB
実行使用メモリ 58,632 KB
最終ジャッジ日時 2024-10-08 03:48:16
合計ジャッジ時間 12,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,252 KB
testcase_01 AC 151 ms
54,084 KB
testcase_02 AC 153 ms
54,032 KB
testcase_03 AC 156 ms
54,096 KB
testcase_04 AC 210 ms
54,576 KB
testcase_05 AC 213 ms
54,496 KB
testcase_06 AC 203 ms
54,444 KB
testcase_07 AC 203 ms
54,464 KB
testcase_08 AC 198 ms
54,528 KB
testcase_09 AC 197 ms
54,444 KB
testcase_10 AC 198 ms
54,244 KB
testcase_11 AC 197 ms
54,224 KB
testcase_12 AC 201 ms
54,044 KB
testcase_13 AC 198 ms
54,172 KB
testcase_14 AC 323 ms
57,428 KB
testcase_15 AC 324 ms
57,296 KB
testcase_16 AC 326 ms
57,352 KB
testcase_17 AC 326 ms
57,360 KB
testcase_18 AC 308 ms
57,452 KB
testcase_19 AC 317 ms
57,384 KB
testcase_20 AC 313 ms
58,632 KB
testcase_21 AC 317 ms
57,456 KB
testcase_22 AC 324 ms
57,184 KB
testcase_23 AC 317 ms
57,376 KB
testcase_24 AC 151 ms
54,180 KB
testcase_25 AC 149 ms
54,088 KB
testcase_26 AC 149 ms
54,188 KB
testcase_27 AC 152 ms
54,072 KB
testcase_28 AC 151 ms
54,308 KB
testcase_29 AC 151 ms
56,148 KB
testcase_30 AC 149 ms
54,028 KB
testcase_31 AC 153 ms
53,960 KB
testcase_32 AC 153 ms
54,020 KB
testcase_33 AC 152 ms
54,016 KB
testcase_34 AC 150 ms
53,912 KB
testcase_35 AC 151 ms
54,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No490 {
    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