結果

問題 No.2424 Josouzai
ユーザー NakamuraNakamura
提出日時 2023-08-20 12:02:17
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 65,816 KB
最終ジャッジ日時 2024-11-30 13:41:57
合計ジャッジ時間 8,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
39,424 KB
testcase_01 AC 66 ms
39,296 KB
testcase_02 AC 66 ms
39,424 KB
testcase_03 AC 66 ms
39,168 KB
testcase_04 AC 150 ms
48,400 KB
testcase_05 AC 383 ms
65,808 KB
testcase_06 AC 364 ms
64,592 KB
testcase_07 AC 370 ms
64,468 KB
testcase_08 AC 388 ms
65,816 KB
testcase_09 AC 65 ms
39,296 KB
testcase_10 AC 98 ms
47,844 KB
testcase_11 AC 167 ms
57,984 KB
testcase_12 AC 142 ms
53,656 KB
testcase_13 AC 154 ms
48,592 KB
testcase_14 AC 229 ms
53,784 KB
testcase_15 AC 91 ms
45,568 KB
testcase_16 AC 338 ms
63,768 KB
testcase_17 AC 131 ms
47,544 KB
testcase_18 AC 141 ms
48,140 KB
testcase_19 AC 207 ms
53,884 KB
testcase_20 AC 346 ms
64,296 KB
testcase_21 AC 267 ms
57,620 KB
testcase_22 AC 151 ms
48,320 KB
testcase_23 AC 169 ms
49,868 KB
testcase_24 AC 115 ms
46,784 KB
testcase_25 AC 366 ms
65,416 KB
testcase_26 AC 266 ms
57,620 KB
testcase_27 AC 379 ms
65,732 KB
testcase_28 AC 326 ms
63,420 KB
testcase_29 AC 288 ms
59,036 KB
testcase_30 AC 117 ms
47,060 KB
testcase_31 AC 197 ms
52,548 KB
testcase_32 AC 374 ms
65,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const main = input => {
	const Rows = input.trim().split('\n');
	const [N, K] = Rows[0].trim().split(' ').map(n => Number(n));
	const A = Rows[1].trim().split(' ').map(n => Number(n));
	
	A.sort((a, b) => a - b);
	
	let k = K;
	const res = [1, 0]
	for (let i = 0; i < N; i++) {
		if (k - A[i] >= 0) {
			k -= A[i];
		} else {
			res[0] = i;
			res[1] = k;
			break;
		}
	}
	
	console.log(res.join(' '));
}

const input = require('fs').readFileSync('/dev/stdin', 'utf8');
main(input);
0