結果

問題 No.5 数字のブロック
ユーザー enuo-9enuo-9
提出日時 2016-09-15 13:08:13
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 830 bytes
コンパイル時間 3,769 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 48,600 KB
最終ジャッジ日時 2024-11-17 06:04:02
合計ジャッジ時間 11,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,284 KB
testcase_01 AC 135 ms
41,220 KB
testcase_02 WA -
testcase_03 AC 256 ms
46,496 KB
testcase_04 AC 239 ms
45,856 KB
testcase_05 WA -
testcase_06 AC 257 ms
45,620 KB
testcase_07 AC 232 ms
46,084 KB
testcase_08 AC 253 ms
46,140 KB
testcase_09 AC 211 ms
43,284 KB
testcase_10 AC 283 ms
47,288 KB
testcase_11 AC 239 ms
45,704 KB
testcase_12 AC 260 ms
46,020 KB
testcase_13 AC 274 ms
46,460 KB
testcase_14 AC 155 ms
41,396 KB
testcase_15 WA -
testcase_16 AC 269 ms
46,680 KB
testcase_17 AC 299 ms
47,640 KB
testcase_18 AC 279 ms
46,808 KB
testcase_19 AC 297 ms
48,600 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 133 ms
41,088 KB
testcase_24 AC 161 ms
41,524 KB
testcase_25 AC 196 ms
42,208 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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;
			for(cnt = 0 ;0 < boxSize;cnt++){
				boxSize = boxSize - blockSize.get(cnt);
			}
			System.out.println(cnt - 1);

	}
}
0