結果

問題 No.5 数字のブロック
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 18:53:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 47,672 KB
最終ジャッジ日時 2024-04-29 08:43:12
合計ジャッジ時間 9,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,320 KB
testcase_01 AC 131 ms
41,168 KB
testcase_02 AC 127 ms
41,124 KB
testcase_03 AC 242 ms
46,672 KB
testcase_04 AC 218 ms
45,500 KB
testcase_05 AC 254 ms
47,224 KB
testcase_06 AC 231 ms
46,080 KB
testcase_07 AC 227 ms
45,820 KB
testcase_08 AC 240 ms
46,576 KB
testcase_09 AC 202 ms
43,280 KB
testcase_10 AC 257 ms
46,936 KB
testcase_11 AC 227 ms
46,060 KB
testcase_12 AC 246 ms
46,392 KB
testcase_13 AC 253 ms
47,004 KB
testcase_14 AC 144 ms
41,332 KB
testcase_15 AC 155 ms
41,408 KB
testcase_16 AC 254 ms
46,508 KB
testcase_17 AC 266 ms
47,672 KB
testcase_18 AC 271 ms
47,616 KB
testcase_19 AC 270 ms
47,476 KB
testcase_20 AC 131 ms
41,460 KB
testcase_21 AC 128 ms
41,456 KB
testcase_22 AC 127 ms
41,204 KB
testcase_23 AC 129 ms
41,316 KB
testcase_24 AC 156 ms
41,728 KB
testcase_25 AC 174 ms
41,952 KB
testcase_26 AC 128 ms
41,080 KB
testcase_27 AC 125 ms
41,040 KB
testcase_28 AC 128 ms
41,456 KB
testcase_29 AC 227 ms
45,576 KB
testcase_30 AC 201 ms
43,632 KB
testcase_31 AC 128 ms
41,164 KB
testcase_32 AC 118 ms
40,052 KB
testcase_33 AC 114 ms
39,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int i, s = 0, l = sc.nextInt(), n = sc.nextInt();
		int[] w = new int[n];
		for (i=0; i<w.length; i++)	w[i] = sc.nextInt();
		Arrays.sort(w);
		for (i=0; i<w.length; i++) {
			s += w[i];
			if (s>l)	break;
		}
		System.out.println(i);
	}
}
0