結果

問題 No.490 yukiソート
ユーザー tentententen
提出日時 2020-12-07 10:26:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 84,024 KB
実行使用メモリ 57,028 KB
最終ジャッジ日時 2024-09-17 13:39:52
合計ジャッジ時間 8,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
55,948 KB
testcase_01 AC 115 ms
53,868 KB
testcase_02 AC 116 ms
54,148 KB
testcase_03 AC 105 ms
53,984 KB
testcase_04 AC 137 ms
53,968 KB
testcase_05 AC 141 ms
54,336 KB
testcase_06 AC 142 ms
54,184 KB
testcase_07 AC 147 ms
54,456 KB
testcase_08 AC 136 ms
53,488 KB
testcase_09 AC 146 ms
54,128 KB
testcase_10 AC 148 ms
54,300 KB
testcase_11 AC 146 ms
54,132 KB
testcase_12 AC 145 ms
54,068 KB
testcase_13 AC 153 ms
54,384 KB
testcase_14 AC 215 ms
56,876 KB
testcase_15 AC 233 ms
56,800 KB
testcase_16 AC 224 ms
56,832 KB
testcase_17 AC 218 ms
57,028 KB
testcase_18 AC 227 ms
56,788 KB
testcase_19 AC 233 ms
56,848 KB
testcase_20 AC 230 ms
56,792 KB
testcase_21 AC 225 ms
56,772 KB
testcase_22 AC 244 ms
56,620 KB
testcase_23 AC 221 ms
56,840 KB
testcase_24 AC 119 ms
54,056 KB
testcase_25 AC 104 ms
53,120 KB
testcase_26 AC 113 ms
54,104 KB
testcase_27 AC 115 ms
52,660 KB
testcase_28 AC 117 ms
54,384 KB
testcase_29 AC 117 ms
54,212 KB
testcase_30 AC 122 ms
54,016 KB
testcase_31 AC 119 ms
53,916 KB
testcase_32 AC 116 ms
54,212 KB
testcase_33 AC 113 ms
53,848 KB
testcase_34 AC 113 ms
53,860 KB
testcase_35 AC 118 ms
54,264 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 j = 0; j < n - 1 && j * 2 < i; j++) {
                int p = j;
                int q = i - j;
                if (q > n - 1) {
                    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