結果

問題 No.5 数字のブロック
ユーザー aparachia14aparachia14
提出日時 2016-01-13 23:49:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,806 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 52,416 KB
最終ジャッジ日時 2024-11-18 08:04:17
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,028 KB
testcase_01 AC 55 ms
49,980 KB
testcase_02 AC 55 ms
50,012 KB
testcase_03 AC 115 ms
52,404 KB
testcase_04 AC 102 ms
51,764 KB
testcase_05 AC 122 ms
52,160 KB
testcase_06 AC 102 ms
51,744 KB
testcase_07 AC 99 ms
51,588 KB
testcase_08 AC 115 ms
52,272 KB
testcase_09 AC 88 ms
51,448 KB
testcase_10 AC 131 ms
52,364 KB
testcase_11 AC 100 ms
51,684 KB
testcase_12 AC 111 ms
51,964 KB
testcase_13 AC 123 ms
51,772 KB
testcase_14 AC 59 ms
49,900 KB
testcase_15 AC 58 ms
50,064 KB
testcase_16 AC 117 ms
51,640 KB
testcase_17 AC 128 ms
52,380 KB
testcase_18 AC 130 ms
52,416 KB
testcase_19 AC 140 ms
52,384 KB
testcase_20 AC 56 ms
49,896 KB
testcase_21 AC 57 ms
50,188 KB
testcase_22 AC 55 ms
50,188 KB
testcase_23 AC 56 ms
49,972 KB
testcase_24 AC 58 ms
49,936 KB
testcase_25 AC 61 ms
49,952 KB
testcase_26 AC 57 ms
50,044 KB
testcase_27 AC 57 ms
50,020 KB
testcase_28 AC 58 ms
50,088 KB
testcase_29 AC 100 ms
51,572 KB
testcase_30 AC 90 ms
51,520 KB
testcase_31 AC 57 ms
50,216 KB
testcase_32 AC 56 ms
50,252 KB
testcase_33 AC 56 ms
50,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

//No.5数字のブロック
public class NumberBlock {

	public static void main(String[] args) throws IOException {
		// TODO 自動生成されたメソッド・スタブ
		//大きな箱の幅
		int widthOfBox;
		//ブロックの数
		int numberOfBlock;
		//各ブロックの幅
		ArrayList<Integer> widthOfBlock = new ArrayList<Integer>();
		
		//入力値の取得
		BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
		widthOfBox = Integer.parseInt(in.readLine());
		numberOfBlock = Integer.parseInt(in.readLine());
		String[] temp = in.readLine().split(" ");
		
		//tempをバラし、int型に直しwidthOfBoxに格納する。
		for(String width : temp){
			widthOfBlock.add(Integer.parseInt(width));
		}
		
		//ArrayListから最小値を求め、その値をwidthOfBoxから減算し、その後ArrayListからその値を除外する。
		//この処理をwidthOfBoxの値が0以下になるまで繰り返す。
		int min;//最小値格納変数
		int counter; //カウンタ
		int counter2 = 0;//第二カウンタ
		int index = 0;//削除対象要素番号格納変数
		int capacity = widthOfBox;
		while(true){
			min = widthOfBox;
			counter = 0;
			
			//配列から最小値を求める。
			for(int width2 : widthOfBlock){
				if(min > width2){//width2の方がminより値が小さければminに格納
					min = width2;
					index = counter;//削除対象の要素番号を記憶
				}else{
					
				}
				counter++;
			}
			
			if(capacity - min >= 0){
				capacity = capacity - min; 
				counter2++;
			}else{
				break;
			}
			
			widthOfBlock.remove(index);//ArrayListから削除
		}
		
		System.out.println(counter2);

	}

}
0