結果

問題 No.5 数字のブロック
ユーザー taku-techtaku-tech
提出日時 2021-05-18 16:41:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 771 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 75,564 KB
実行使用メモリ 59,032 KB
最終ジャッジ日時 2024-10-08 17:58:36
合計ジャッジ時間 10,833 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,232 KB
testcase_01 AC 114 ms
53,064 KB
testcase_02 AC 126 ms
53,780 KB
testcase_03 AC 239 ms
58,248 KB
testcase_04 AC 221 ms
57,248 KB
testcase_05 AC 247 ms
59,032 KB
testcase_06 AC 227 ms
58,340 KB
testcase_07 AC 219 ms
57,544 KB
testcase_08 AC 235 ms
58,636 KB
testcase_09 AC 193 ms
56,668 KB
testcase_10 AC 249 ms
59,004 KB
testcase_11 AC 212 ms
57,536 KB
testcase_12 AC 237 ms
58,304 KB
testcase_13 AC 245 ms
58,948 KB
testcase_14 AC 143 ms
54,412 KB
testcase_15 AC 148 ms
54,176 KB
testcase_16 AC 256 ms
58,856 KB
testcase_17 AC 258 ms
58,632 KB
testcase_18 AC 254 ms
58,216 KB
testcase_19 AC 272 ms
58,720 KB
testcase_20 AC 131 ms
54,060 KB
testcase_21 AC 128 ms
54,252 KB
testcase_22 AC 128 ms
54,364 KB
testcase_23 AC 129 ms
53,956 KB
testcase_24 AC 163 ms
54,240 KB
testcase_25 AC 181 ms
54,392 KB
testcase_26 AC 133 ms
54,328 KB
testcase_27 AC 126 ms
53,864 KB
testcase_28 AC 132 ms
53,832 KB
testcase_29 AC 219 ms
57,288 KB
testcase_30 AC 201 ms
56,668 KB
testcase_31 AC 127 ms
53,992 KB
testcase_32 AC 127 ms
54,256 KB
testcase_33 AC 126 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class BlockOfNumber02 {

	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);

		int boxWidth = sc.nextInt();	//入れ物となる箱の幅
		int blockNum = sc.nextInt();	//ブロックの数
		int[] arrayBlocksWidth = new int[blockNum];		//各ブロックの幅を格納した配列

		for(int i = 0; i < blockNum; i++) {
			arrayBlocksWidth[i] = sc.nextInt();
		}

		int blockCnt = 0;
		int[] sortedBlock = arrayBlocksWidth.clone();
		Arrays.sort(sortedBlock);
		int space = boxWidth;
		for(int i = 0; i < sortedBlock.length; i++) {
			if(space >= sortedBlock[i]) {
				space -= sortedBlock[i];
				blockCnt++;
			} else {
				break;
			}
		}

		System.out.println(blockCnt);
	}

}
0