結果

問題 No.5 数字のブロック
ユーザー enuo-9enuo-9
提出日時 2016-09-15 13:30:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 949 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 76,560 KB
実行使用メモリ 59,160 KB
最終ジャッジ日時 2024-11-18 09:36:03
合計ジャッジ時間 10,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,912 KB
testcase_01 AC 120 ms
52,836 KB
testcase_02 AC 120 ms
54,120 KB
testcase_03 AC 232 ms
58,576 KB
testcase_04 AC 224 ms
57,944 KB
testcase_05 AC 250 ms
58,724 KB
testcase_06 AC 228 ms
58,284 KB
testcase_07 AC 218 ms
57,560 KB
testcase_08 AC 231 ms
58,268 KB
testcase_09 AC 190 ms
56,740 KB
testcase_10 AC 254 ms
58,376 KB
testcase_11 AC 213 ms
57,640 KB
testcase_12 AC 228 ms
58,392 KB
testcase_13 AC 243 ms
58,560 KB
testcase_14 AC 135 ms
53,988 KB
testcase_15 AC 141 ms
54,340 KB
testcase_16 AC 247 ms
58,692 KB
testcase_17 AC 256 ms
59,160 KB
testcase_18 AC 261 ms
58,768 KB
testcase_19 AC 263 ms
58,936 KB
testcase_20 AC 117 ms
53,888 KB
testcase_21 AC 119 ms
53,920 KB
testcase_22 AC 118 ms
53,976 KB
testcase_23 AC 116 ms
54,016 KB
testcase_24 AC 155 ms
54,292 KB
testcase_25 AC 165 ms
54,500 KB
testcase_26 AC 104 ms
53,008 KB
testcase_27 AC 119 ms
53,896 KB
testcase_28 AC 119 ms
54,136 KB
testcase_29 AC 213 ms
57,760 KB
testcase_30 AC 193 ms
56,624 KB
testcase_31 AC 117 ms
53,980 KB
testcase_32 AC 121 ms
54,012 KB
testcase_33 AC 117 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

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++;
				if(blockQuantity==cnt){break;}

			}

			System.out.println(cnt);

	}
}
0