結果

問題 No.490 yukiソート
ユーザー htensaihtensai
提出日時 2019-12-26 10:48:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 57,020 KB
最終ジャッジ日時 2024-10-03 05:04:58
合計ジャッジ時間 8,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,944 KB
testcase_01 AC 101 ms
52,716 KB
testcase_02 AC 111 ms
53,888 KB
testcase_03 AC 115 ms
54,088 KB
testcase_04 AC 137 ms
54,052 KB
testcase_05 AC 139 ms
54,032 KB
testcase_06 AC 139 ms
54,088 KB
testcase_07 AC 138 ms
54,092 KB
testcase_08 AC 153 ms
53,972 KB
testcase_09 AC 141 ms
54,268 KB
testcase_10 AC 136 ms
54,372 KB
testcase_11 AC 139 ms
54,008 KB
testcase_12 AC 136 ms
54,272 KB
testcase_13 AC 153 ms
54,264 KB
testcase_14 AC 196 ms
56,908 KB
testcase_15 AC 226 ms
57,020 KB
testcase_16 AC 194 ms
56,744 KB
testcase_17 AC 201 ms
56,688 KB
testcase_18 AC 212 ms
56,792 KB
testcase_19 AC 196 ms
56,624 KB
testcase_20 AC 211 ms
56,460 KB
testcase_21 AC 234 ms
56,768 KB
testcase_22 AC 227 ms
56,484 KB
testcase_23 AC 200 ms
56,852 KB
testcase_24 AC 118 ms
53,896 KB
testcase_25 AC 115 ms
54,148 KB
testcase_26 AC 118 ms
53,960 KB
testcase_27 AC 105 ms
52,936 KB
testcase_28 AC 100 ms
52,924 KB
testcase_29 AC 113 ms
54,140 KB
testcase_30 AC 114 ms
53,744 KB
testcase_31 AC 112 ms
54,048 KB
testcase_32 AC 98 ms
52,928 KB
testcase_33 AC 108 ms
52,736 KB
testcase_34 AC 123 ms
53,936 KB
testcase_35 AC 120 ms
53,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        for (int i = 1; i < 2 * n - 3; i++) {
            for (int p = 0; i - p > p; p++) {
                int q = i - p;
                if (q >= n) {
                    continue;
                }
                if (arr[p] > arr[q]) {
                    int tmp = arr[p];
                    arr[p] = arr[q];
                    arr[q] = tmp;
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i != 0) {
                sb.append(" ");
            }
            sb.append(arr[i]);
        }
        System.out.println(sb);
    }
}
0