結果

問題 No.365 ジェンガソート
ユーザー ikesouikesou
提出日時 2021-03-14 16:29:17
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 49,224 KB
最終ジャッジ日時 2024-11-06 06:12:44
合計ジャッジ時間 6,518 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
39,168 KB
testcase_01 AC 65 ms
39,040 KB
testcase_02 AC 65 ms
39,168 KB
testcase_03 AC 67 ms
39,040 KB
testcase_04 AC 65 ms
39,040 KB
testcase_05 AC 66 ms
39,168 KB
testcase_06 AC 65 ms
39,040 KB
testcase_07 AC 65 ms
39,168 KB
testcase_08 AC 63 ms
39,296 KB
testcase_09 AC 64 ms
39,040 KB
testcase_10 AC 66 ms
39,040 KB
testcase_11 AC 66 ms
39,296 KB
testcase_12 AC 66 ms
39,168 KB
testcase_13 AC 66 ms
38,912 KB
testcase_14 AC 65 ms
39,296 KB
testcase_15 AC 67 ms
39,168 KB
testcase_16 AC 178 ms
47,936 KB
testcase_17 AC 119 ms
48,672 KB
testcase_18 AC 71 ms
42,880 KB
testcase_19 AC 117 ms
48,672 KB
testcase_20 AC 83 ms
46,332 KB
testcase_21 AC 79 ms
44,032 KB
testcase_22 AC 112 ms
47,796 KB
testcase_23 AC 96 ms
46,848 KB
testcase_24 AC 108 ms
47,648 KB
testcase_25 AC 78 ms
43,776 KB
testcase_26 AC 99 ms
47,176 KB
testcase_27 AC 121 ms
49,088 KB
testcase_28 AC 102 ms
47,436 KB
testcase_29 AC 116 ms
48,768 KB
testcase_30 AC 102 ms
47,200 KB
testcase_31 AC 82 ms
44,544 KB
testcase_32 AC 79 ms
44,032 KB
testcase_33 AC 120 ms
48,952 KB
testcase_34 AC 75 ms
43,648 KB
testcase_35 AC 104 ms
47,656 KB
testcase_36 AC 122 ms
48,972 KB
testcase_37 AC 117 ms
48,968 KB
testcase_38 AC 116 ms
49,224 KB
testcase_39 AC 117 ms
48,968 KB
testcase_40 AC 118 ms
48,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function main() {
    console.log(solve(load()));
}

function toInt(num) {
    return parseInt(num);
}

function load() {
    const {readFileSync} = require('fs');
    return readFileSync('/dev/stdin', 'utf8');
}

function solve(input) {
    const n = Number(input.split('\n')[0]);
    const block_list = input.split('\n')[1].split(' ').map(toInt);

    let search_number = n;
    let sorted_count = 0;

    for (let i = block_list.length - 1;0 <= i;i--) {
        if (block_list[i] === search_number) {
            search_number--;
            sorted_count++;
        }
    }

    return n - sorted_count;
}

main();
0