結果

問題 No.490 yukiソート
ユーザー fjafjafjafjafjafja
提出日時 2017-08-31 15:04:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 76,400 KB
実行使用メモリ 57,620 KB
最終ジャッジ日時 2024-11-06 16:34:37
合計ジャッジ時間 12,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,344 KB
testcase_01 AC 151 ms
54,220 KB
testcase_02 AC 152 ms
54,352 KB
testcase_03 AC 156 ms
54,276 KB
testcase_04 AC 196 ms
54,692 KB
testcase_05 AC 200 ms
54,188 KB
testcase_06 AC 194 ms
54,516 KB
testcase_07 AC 200 ms
54,404 KB
testcase_08 AC 195 ms
54,504 KB
testcase_09 AC 191 ms
54,404 KB
testcase_10 AC 193 ms
54,652 KB
testcase_11 AC 201 ms
54,304 KB
testcase_12 AC 197 ms
54,780 KB
testcase_13 AC 191 ms
54,636 KB
testcase_14 AC 307 ms
57,196 KB
testcase_15 AC 307 ms
57,396 KB
testcase_16 AC 307 ms
57,476 KB
testcase_17 AC 311 ms
57,540 KB
testcase_18 AC 307 ms
57,016 KB
testcase_19 AC 310 ms
57,620 KB
testcase_20 AC 314 ms
57,372 KB
testcase_21 AC 318 ms
57,308 KB
testcase_22 AC 308 ms
57,512 KB
testcase_23 AC 308 ms
57,292 KB
testcase_24 AC 154 ms
54,276 KB
testcase_25 AC 150 ms
54,316 KB
testcase_26 AC 152 ms
54,344 KB
testcase_27 AC 149 ms
54,408 KB
testcase_28 AC 151 ms
53,880 KB
testcase_29 AC 150 ms
54,592 KB
testcase_30 AC 152 ms
54,184 KB
testcase_31 AC 148 ms
54,112 KB
testcase_32 AC 151 ms
54,300 KB
testcase_33 AC 149 ms
54,188 KB
testcase_34 AC 151 ms
54,260 KB
testcase_35 AC 150 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N490
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int buf=0;
		int[] a=new int[N];
		for(int i=0;i<N;i++)
		{
			a[i]=sc.nextInt();
		}

		for(int i=0;i<2*N-3;i++)
		{
			int s=0,t=i;
			while(s<t)
			{
				if(t<=N-1&&a[s]>a[t]){buf=a[s];a[s]=a[t];a[t]=buf;}
				s++;
				t=i-s;
			}
		}
		for(int aa:a)
		{
			System.out.print(aa+" ");
		}System.out.println();

	}

}
0