結果

問題 No.2424 Josouzai
ユーザー NakamuraNakamura
提出日時 2023-08-20 12:02:17
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 65,808 KB
最終ジャッジ日時 2024-05-07 18:43:25
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
39,168 KB
testcase_01 AC 55 ms
39,040 KB
testcase_02 AC 54 ms
39,040 KB
testcase_03 AC 56 ms
39,168 KB
testcase_04 AC 191 ms
48,016 KB
testcase_05 AC 349 ms
65,684 KB
testcase_06 AC 342 ms
64,596 KB
testcase_07 AC 336 ms
64,332 KB
testcase_08 AC 355 ms
65,808 KB
testcase_09 AC 56 ms
39,168 KB
testcase_10 AC 84 ms
47,964 KB
testcase_11 AC 145 ms
58,236 KB
testcase_12 AC 121 ms
53,528 KB
testcase_13 AC 145 ms
48,460 KB
testcase_14 AC 218 ms
53,528 KB
testcase_15 AC 79 ms
45,440 KB
testcase_16 AC 308 ms
63,896 KB
testcase_17 AC 115 ms
47,416 KB
testcase_18 AC 126 ms
48,056 KB
testcase_19 AC 186 ms
53,756 KB
testcase_20 AC 306 ms
63,916 KB
testcase_21 AC 240 ms
57,488 KB
testcase_22 AC 133 ms
48,440 KB
testcase_23 AC 155 ms
49,604 KB
testcase_24 AC 100 ms
46,784 KB
testcase_25 AC 323 ms
65,028 KB
testcase_26 AC 246 ms
57,500 KB
testcase_27 AC 346 ms
65,344 KB
testcase_28 AC 292 ms
63,436 KB
testcase_29 AC 263 ms
58,772 KB
testcase_30 AC 103 ms
46,936 KB
testcase_31 AC 176 ms
52,292 KB
testcase_32 AC 329 ms
65,168 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