結果

問題 No.490 yukiソート
ユーザー testtest
提出日時 2022-11-24 16:30:19
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 44,820 KB
最終ジャッジ日時 2024-10-01 06:53:39
合計ジャッジ時間 4,944 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
38,400 KB
testcase_01 AC 68 ms
39,296 KB
testcase_02 AC 68 ms
38,400 KB
testcase_03 AC 68 ms
38,528 KB
testcase_04 AC 311 ms
44,288 KB
testcase_05 AC 81 ms
43,040 KB
testcase_06 AC 79 ms
42,920 KB
testcase_07 AC 80 ms
43,044 KB
testcase_08 AC 80 ms
42,916 KB
testcase_09 AC 78 ms
43,172 KB
testcase_10 AC 80 ms
43,680 KB
testcase_11 AC 79 ms
43,044 KB
testcase_12 AC 78 ms
42,920 KB
testcase_13 AC 79 ms
42,912 KB
testcase_14 AC 142 ms
42,980 KB
testcase_15 AC 143 ms
42,984 KB
testcase_16 AC 162 ms
43,488 KB
testcase_17 AC 142 ms
43,104 KB
testcase_18 AC 142 ms
43,108 KB
testcase_19 AC 157 ms
44,024 KB
testcase_20 AC 157 ms
43,744 KB
testcase_21 AC 142 ms
42,852 KB
testcase_22 AC 143 ms
43,112 KB
testcase_23 AC 174 ms
44,820 KB
testcase_24 AC 64 ms
38,528 KB
testcase_25 AC 64 ms
38,528 KB
testcase_26 AC 66 ms
38,656 KB
testcase_27 AC 66 ms
38,528 KB
testcase_28 AC 66 ms
38,656 KB
testcase_29 AC 66 ms
38,528 KB
testcase_30 AC 66 ms
38,528 KB
testcase_31 AC 67 ms
39,168 KB
testcase_32 AC 66 ms
38,528 KB
testcase_33 AC 66 ms
38,656 KB
testcase_34 AC 66 ms
38,656 KB
testcase_35 AC 65 ms
38,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function arrInt(arr) {
    return arr.map(str => parseInt(str, 10));
}
function Main(input) {
    const src = input.split("\n");
    const n = parseInt(src[0]);
    const a = arrInt(src[1].split(" "));
    for (let i = 1; i < 2 * n - 3; i++) {
        for (let p = 0; p < n - 1; p++) {
            let q = i - p;
            if (p < q && a[p] > a[q]) {
                [a[p], a[q]] = [a[q], a[p]];
            }
        }
    }
    console.log(a.join(" "));
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0