結果

問題 No.2424 Josouzai
ユーザー NakamuraNakamura
提出日時 2023-08-20 11:59:05
言語 JavaScript
(node v23.5.0)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 66,064 KB
最終ジャッジ日時 2024-11-30 13:38:45
合計ジャッジ時間 10,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
39,040 KB
testcase_01 AC 64 ms
39,296 KB
testcase_02 AC 62 ms
39,296 KB
testcase_03 WA -
testcase_04 AC 192 ms
48,020 KB
testcase_05 AC 381 ms
65,568 KB
testcase_06 AC 362 ms
64,592 KB
testcase_07 AC 363 ms
64,464 KB
testcase_08 AC 384 ms
66,064 KB
testcase_09 AC 63 ms
39,168 KB
testcase_10 AC 96 ms
47,964 KB
testcase_11 AC 162 ms
57,984 KB
testcase_12 AC 138 ms
53,660 KB
testcase_13 AC 150 ms
48,848 KB
testcase_14 AC 227 ms
53,656 KB
testcase_15 AC 88 ms
45,568 KB
testcase_16 AC 336 ms
63,764 KB
testcase_17 AC 127 ms
47,544 KB
testcase_18 AC 139 ms
48,144 KB
testcase_19 AC 202 ms
53,888 KB
testcase_20 AC 339 ms
64,044 KB
testcase_21 AC 262 ms
57,492 KB
testcase_22 AC 147 ms
48,440 KB
testcase_23 AC 167 ms
49,740 KB
testcase_24 AC 111 ms
46,780 KB
testcase_25 AC 361 ms
65,156 KB
testcase_26 AC 262 ms
57,752 KB
testcase_27 AC 375 ms
65,472 KB
testcase_28 AC 321 ms
63,420 KB
testcase_29 AC 283 ms
59,032 KB
testcase_30 AC 113 ms
47,192 KB
testcase_31 AC 194 ms
52,420 KB
testcase_32 AC 366 ms
65,300 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