結果

問題 No.5 数字のブロック
ユーザー enuo-9enuo-9
提出日時 2016-09-15 13:26:22
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 914 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 76,364 KB
実行使用メモリ 47,784 KB
最終ジャッジ日時 2024-11-17 06:04:14
合計ジャッジ時間 10,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,396 KB
testcase_01 AC 128 ms
41,460 KB
testcase_02 AC 113 ms
40,764 KB
testcase_03 AC 237 ms
46,464 KB
testcase_04 AC 221 ms
45,988 KB
testcase_05 AC 252 ms
47,116 KB
testcase_06 AC 237 ms
46,204 KB
testcase_07 AC 214 ms
46,148 KB
testcase_08 AC 229 ms
46,252 KB
testcase_09 AC 193 ms
43,512 KB
testcase_10 AC 271 ms
47,644 KB
testcase_11 AC 233 ms
46,148 KB
testcase_12 AC 235 ms
46,428 KB
testcase_13 AC 245 ms
46,304 KB
testcase_14 AC 133 ms
41,324 KB
testcase_15 AC 157 ms
41,276 KB
testcase_16 AC 258 ms
47,344 KB
testcase_17 AC 269 ms
47,784 KB
testcase_18 AC 279 ms
46,388 KB
testcase_19 AC 288 ms
47,768 KB
testcase_20 RE -
testcase_21 AC 125 ms
41,348 KB
testcase_22 AC 128 ms
41,108 KB
testcase_23 AC 126 ms
41,008 KB
testcase_24 AC 145 ms
41,636 KB
testcase_25 AC 167 ms
41,832 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 223 ms
46,056 KB
testcase_30 AC 205 ms
43,956 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = 0;
			while(true){

				boxSize = boxSize - blockSize.get(cnt);

				if(boxSize < 0 || boxSize == 0){
					if(boxSize==0)
						cnt++;
					break;

				}
				cnt++;

			}

			System.out.println(cnt);

	}
}
0