結果

問題 No.5 数字のブロック
ユーザー sasukesasuke
提出日時 2016-06-21 07:16:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 478 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 59,484 KB
最終ジャッジ日時 2024-11-18 08:43:15
合計ジャッジ時間 9,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,172 KB
testcase_01 AC 133 ms
54,068 KB
testcase_02 AC 129 ms
53,972 KB
testcase_03 AC 253 ms
58,848 KB
testcase_04 AC 236 ms
57,552 KB
testcase_05 AC 270 ms
58,604 KB
testcase_06 AC 242 ms
58,112 KB
testcase_07 AC 231 ms
57,736 KB
testcase_08 AC 251 ms
57,776 KB
testcase_09 AC 216 ms
56,680 KB
testcase_10 AC 280 ms
59,052 KB
testcase_11 AC 232 ms
57,520 KB
testcase_12 AC 250 ms
58,652 KB
testcase_13 AC 259 ms
58,724 KB
testcase_14 AC 146 ms
54,136 KB
testcase_15 AC 166 ms
53,992 KB
testcase_16 AC 272 ms
58,792 KB
testcase_17 AC 285 ms
59,004 KB
testcase_18 AC 279 ms
58,836 KB
testcase_19 AC 293 ms
59,484 KB
testcase_20 AC 131 ms
54,200 KB
testcase_21 AC 119 ms
52,840 KB
testcase_22 AC 132 ms
54,256 KB
testcase_23 AC 132 ms
54,004 KB
testcase_24 AC 167 ms
54,196 KB
testcase_25 AC 196 ms
54,356 KB
testcase_26 AC 131 ms
54,044 KB
testcase_27 AC 119 ms
52,820 KB
testcase_28 AC 131 ms
54,084 KB
testcase_29 AC 232 ms
57,620 KB
testcase_30 AC 210 ms
56,604 KB
testcase_31 AC 129 ms
53,784 KB
testcase_32 AC 134 ms
54,080 KB
testcase_33 AC 133 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int N = sc.nextInt();
		ArrayList<Integer> wide = new ArrayList<Integer>();
		for( int i = 0 ; i < N ; i++ ){
			wide.add(sc.nextInt());
		}
		Collections.sort(wide);
		int w_sum = 0;
		int count = 0;
		for( int i = 0 ; i < N ; i++ ){
			w_sum += wide.get(i);
			if( w_sum > L)break;
			count++;
		}
		System.out.println(count);
	}
}
0