結果

問題 No.5 数字のブロック
ユーザー villachvillach
提出日時 2017-09-19 19:38:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 290 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 3,720 ms
コンパイル使用メモリ 84,020 KB
実行使用メモリ 59,028 KB
最終ジャッジ日時 2024-11-18 11:43:06
合計ジャッジ時間 11,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
54,044 KB
testcase_01 AC 138 ms
54,124 KB
testcase_02 AC 139 ms
54,036 KB
testcase_03 AC 254 ms
58,152 KB
testcase_04 AC 228 ms
57,476 KB
testcase_05 AC 270 ms
58,940 KB
testcase_06 AC 239 ms
58,080 KB
testcase_07 AC 224 ms
57,584 KB
testcase_08 AC 235 ms
58,104 KB
testcase_09 AC 217 ms
56,552 KB
testcase_10 AC 265 ms
58,584 KB
testcase_11 AC 230 ms
57,648 KB
testcase_12 AC 247 ms
58,060 KB
testcase_13 AC 259 ms
58,720 KB
testcase_14 AC 140 ms
54,172 KB
testcase_15 AC 152 ms
54,352 KB
testcase_16 AC 269 ms
58,212 KB
testcase_17 AC 283 ms
58,876 KB
testcase_18 AC 272 ms
58,856 KB
testcase_19 AC 290 ms
59,028 KB
testcase_20 AC 115 ms
52,840 KB
testcase_21 AC 125 ms
53,928 KB
testcase_22 AC 116 ms
53,016 KB
testcase_23 AC 128 ms
54,096 KB
testcase_24 AC 166 ms
54,140 KB
testcase_25 AC 183 ms
54,300 KB
testcase_26 AC 132 ms
54,216 KB
testcase_27 AC 135 ms
53,960 KB
testcase_28 AC 130 ms
54,100 KB
testcase_29 AC 231 ms
57,576 KB
testcase_30 AC 210 ms
56,588 KB
testcase_31 AC 131 ms
53,956 KB
testcase_32 AC 130 ms
54,024 KB
testcase_33 AC 132 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class N5 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int n = sc.nextInt();
		int c = 0;
		ArrayList<Integer> blocks = new ArrayList<Integer>();
		
		for(int i = 0;i < n;++i){
			blocks.add(sc.nextInt());
		}
		
		Collections.sort(blocks);
		
		for(int b:blocks){
			l -= b;
			if(l < 0){
				System.out.println(c);
				return;
			}
			++c;
		}
		System.out.println(c);
	}
}
0