結果

問題 No.2424 Josouzai
ユーザー NakamuraNakamura
提出日時 2023-08-20 11:59:05
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 65,424 KB
最終ジャッジ日時 2024-05-07 18:40:28
合計ジャッジ時間 10,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
38,784 KB
testcase_01 AC 60 ms
38,912 KB
testcase_02 AC 59 ms
38,784 KB
testcase_03 WA -
testcase_04 AC 154 ms
47,632 KB
testcase_05 AC 363 ms
65,424 KB
testcase_06 AC 342 ms
63,952 KB
testcase_07 AC 348 ms
63,956 KB
testcase_08 AC 367 ms
65,300 KB
testcase_09 AC 60 ms
38,656 KB
testcase_10 AC 93 ms
47,456 KB
testcase_11 AC 154 ms
57,604 KB
testcase_12 AC 131 ms
53,148 KB
testcase_13 AC 144 ms
48,080 KB
testcase_14 AC 221 ms
53,140 KB
testcase_15 AC 85 ms
45,184 KB
testcase_16 AC 329 ms
63,380 KB
testcase_17 AC 119 ms
47,164 KB
testcase_18 AC 132 ms
47,752 KB
testcase_19 AC 198 ms
53,376 KB
testcase_20 AC 328 ms
63,656 KB
testcase_21 AC 256 ms
57,028 KB
testcase_22 AC 141 ms
48,056 KB
testcase_23 AC 163 ms
49,224 KB
testcase_24 AC 105 ms
46,396 KB
testcase_25 AC 347 ms
64,776 KB
testcase_26 AC 254 ms
57,244 KB
testcase_27 AC 360 ms
65,216 KB
testcase_28 AC 313 ms
63,036 KB
testcase_29 AC 273 ms
58,520 KB
testcase_30 AC 110 ms
46,680 KB
testcase_31 AC 191 ms
51,776 KB
testcase_32 AC 354 ms
64,908 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 = []
	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