結果

問題 No.5 数字のブロック
ユーザー enuo-9enuo-9
提出日時 2016-09-15 12:09:22
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 845 bytes
コンパイル時間 4,013 ms
コンパイル使用メモリ 81,348 KB
実行使用メモリ 48,096 KB
最終ジャッジ日時 2024-11-17 06:03:27
合計ジャッジ時間 11,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,568 KB
testcase_01 AC 139 ms
41,500 KB
testcase_02 RE -
testcase_03 AC 268 ms
46,816 KB
testcase_04 AC 233 ms
46,096 KB
testcase_05 AC 281 ms
46,948 KB
testcase_06 AC 253 ms
46,132 KB
testcase_07 AC 254 ms
45,700 KB
testcase_08 AC 261 ms
46,336 KB
testcase_09 AC 217 ms
43,536 KB
testcase_10 AC 291 ms
48,096 KB
testcase_11 AC 245 ms
46,168 KB
testcase_12 AC 265 ms
46,360 KB
testcase_13 AC 279 ms
46,800 KB
testcase_14 AC 152 ms
41,504 KB
testcase_15 AC 165 ms
41,952 KB
testcase_16 AC 279 ms
47,484 KB
testcase_17 AC 307 ms
47,856 KB
testcase_18 AC 298 ms
47,592 KB
testcase_19 AC 302 ms
47,928 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 140 ms
41,472 KB
testcase_24 AC 166 ms
41,692 KB
testcase_25 AC 196 ms
41,984 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 242 ms
45,920 KB
testcase_30 AC 221 ms
43,504 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no5;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class No5 {
	public static void main(String args[]){
		String str = "";
		int boxSize = 0;
		int blockQuantity = 0;
		ArrayList<Integer> blockSize = new ArrayList<Integer>();

		Scanner sc = new Scanner(System.in);

		BufferedReader input =
				new BufferedReader (new InputStreamReader (System.in));

			//str = input.readLine();
			boxSize = sc.nextInt();

			//str = input.readLine();
			blockQuantity = sc.nextInt();

			for(int i = 0; i < blockQuantity; i++){
				blockSize.add(sc.nextInt());
			};

			Collections.sort(blockSize);

			int cnt;
			for(cnt = 0 ;0 <= boxSize;cnt++){
				boxSize = boxSize - blockSize.get(cnt);
			}
			System.out.println(cnt - 1);

	}
}
0