結果

問題 No.490 yukiソート
ユーザー mosmos_21mosmos_21
提出日時 2017-06-19 22:36:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 57,612 KB
最終ジャッジ日時 2024-10-02 07:54:03
合計ジャッジ時間 10,245 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,212 KB
testcase_01 AC 133 ms
54,220 KB
testcase_02 AC 134 ms
54,012 KB
testcase_03 AC 133 ms
54,028 KB
testcase_04 AC 188 ms
54,844 KB
testcase_05 AC 187 ms
54,508 KB
testcase_06 AC 183 ms
54,268 KB
testcase_07 AC 186 ms
54,464 KB
testcase_08 AC 185 ms
54,908 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 179 ms
54,544 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 134 ms
54,140 KB
testcase_25 AC 131 ms
54,260 KB
testcase_26 WA -
testcase_27 AC 132 ms
53,824 KB
testcase_28 AC 133 ms
53,988 KB
testcase_29 WA -
testcase_30 AC 129 ms
54,224 KB
testcase_31 WA -
testcase_32 AC 131 ms
54,156 KB
testcase_33 WA -
testcase_34 AC 131 ms
54,084 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static Scanner in = new Scanner(System.in);

    public static void main(String[] args) {
       int n = in.nextInt();
       int[] a = new int[n];
       for(int i = 0; i < n; i++){
           a[i] = in.nextInt();
       }

       for(int i = 0; i < 2 * n - 3; i++){
           for(int j = (i + 1) / 2; j <= i; j++){
               int q = j;
               int p = i - q;
               if(q < n - 1 && a[p] > a[q]){
                   int t = a[p];
                   a[p] = a[q];
                   a[q] = t;
               }
           }
       }
       for(int i = 0; i < a.length; i++){
           if(i != 0){
               System.out.print(" ");
           }
           System.out.print(a[i]);
       }
       System.out.println();
    }


}
0