結果

問題 No.365 ジェンガソート
ユーザー ikesouikesou
提出日時 2021-03-13 10:39:29
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 8,092 ms
コンパイル使用メモリ 230,608 KB
実行使用メモリ 49,476 KB
最終ジャッジ日時 2024-12-31 16:34:15
合計ジャッジ時間 12,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
39,552 KB
testcase_01 AC 62 ms
39,296 KB
testcase_02 AC 62 ms
39,296 KB
testcase_03 AC 63 ms
39,296 KB
testcase_04 AC 62 ms
39,168 KB
testcase_05 AC 59 ms
39,168 KB
testcase_06 AC 62 ms
39,552 KB
testcase_07 AC 62 ms
39,296 KB
testcase_08 AC 63 ms
39,168 KB
testcase_09 AC 63 ms
39,296 KB
testcase_10 AC 63 ms
41,324 KB
testcase_11 AC 62 ms
39,552 KB
testcase_12 AC 63 ms
39,168 KB
testcase_13 AC 63 ms
39,296 KB
testcase_14 AC 62 ms
39,552 KB
testcase_15 AC 62 ms
39,296 KB
testcase_16 AC 102 ms
48,192 KB
testcase_17 AC 105 ms
49,044 KB
testcase_18 AC 68 ms
43,136 KB
testcase_19 AC 106 ms
48,920 KB
testcase_20 AC 77 ms
44,672 KB
testcase_21 AC 76 ms
44,544 KB
testcase_22 AC 102 ms
48,304 KB
testcase_23 AC 90 ms
47,232 KB
testcase_24 AC 97 ms
48,152 KB
testcase_25 AC 75 ms
44,288 KB
testcase_26 AC 91 ms
47,296 KB
testcase_27 AC 108 ms
49,336 KB
testcase_28 AC 92 ms
47,568 KB
testcase_29 AC 106 ms
48,892 KB
testcase_30 AC 95 ms
47,448 KB
testcase_31 AC 78 ms
44,928 KB
testcase_32 AC 81 ms
44,416 KB
testcase_33 AC 108 ms
49,332 KB
testcase_34 AC 74 ms
44,160 KB
testcase_35 AC 97 ms
48,032 KB
testcase_36 AC 109 ms
49,344 KB
testcase_37 AC 109 ms
49,348 KB
testcase_38 AC 120 ms
49,288 KB
testcase_39 AC 118 ms
49,476 KB
testcase_40 AC 110 ms
49,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';

function main(input: Array<string>) {
    const n = Number(input[0]);
    const block_length_list = input[1].split(' ').map(x => Number(x));
    
    let sorted_count = 0;
    let searching_num = n;
    for (let i = n - 1;0 <= i;i--) {
      if (block_length_list[i] === searching_num) {
        sorted_count++;
        searching_num--;
      }
    }
   
    console.log(n - sorted_count);
}

main(fs.readFileSync('/dev/stdin', 'utf8').split('\n'));
0