結果

問題 No.2424 Josouzai
ユーザー Fullmoon8507Fullmoon8507
提出日時 2023-10-30 20:06:58
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 69,580 KB
最終ジャッジ日時 2024-09-25 17:22:54
合計ジャッジ時間 11,172 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,168 KB
testcase_01 AC 62 ms
39,168 KB
testcase_02 AC 63 ms
39,168 KB
testcase_03 AC 63 ms
39,040 KB
testcase_04 AC 401 ms
51,404 KB
testcase_05 AC 407 ms
69,448 KB
testcase_06 AC 386 ms
67,432 KB
testcase_07 AC 388 ms
67,428 KB
testcase_08 AC 405 ms
69,580 KB
testcase_09 AC 63 ms
39,296 KB
testcase_10 AC 113 ms
51,428 KB
testcase_11 AC 197 ms
64,948 KB
testcase_12 AC 169 ms
61,516 KB
testcase_13 AC 167 ms
52,176 KB
testcase_14 AC 248 ms
58,584 KB
testcase_15 AC 92 ms
45,440 KB
testcase_16 AC 357 ms
66,964 KB
testcase_17 AC 139 ms
49,700 KB
testcase_18 AC 156 ms
51,508 KB
testcase_19 AC 218 ms
56,416 KB
testcase_20 AC 362 ms
66,852 KB
testcase_21 AC 292 ms
62,640 KB
testcase_22 AC 165 ms
51,948 KB
testcase_23 AC 185 ms
54,088 KB
testcase_24 AC 121 ms
48,160 KB
testcase_25 AC 387 ms
68,648 KB
testcase_26 AC 292 ms
63,064 KB
testcase_27 AC 400 ms
69,136 KB
testcase_28 AC 343 ms
65,496 KB
testcase_29 AC 311 ms
63,604 KB
testcase_30 AC 126 ms
48,416 KB
testcase_31 AC 211 ms
57,168 KB
testcase_32 AC 391 ms
68,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let lines = require("fs").readFileSync("/dev/stdin", "utf8").split("\n");
let buf = lines[0].split(" ");
let placeNum = parseInt(buf[0]);
let jyosoluzaiNum = parseInt(buf[1]);

let placeList = [];
for(let place of lines[1].split(" ")){
    placeList.push(parseInt(place));
}

placeList.sort((a,b) => a-b);

let count = 0;
for(let place of placeList){
    if(place <= jyosoluzaiNum){
        count++;
        jyosoluzaiNum -= place;
    } else {
        break;
    }
}

console.log(count + " " + jyosoluzaiNum);
0