結果

問題 No.5 数字のブロック
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-10 10:40:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 702 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 58,692 KB
最終ジャッジ日時 2024-10-05 13:27:06
合計ジャッジ時間 10,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,448 KB
testcase_01 AC 115 ms
39,964 KB
testcase_02 WA -
testcase_03 AC 241 ms
46,684 KB
testcase_04 AC 217 ms
45,624 KB
testcase_05 WA -
testcase_06 AC 229 ms
46,500 KB
testcase_07 AC 223 ms
45,708 KB
testcase_08 AC 232 ms
46,700 KB
testcase_09 AC 203 ms
43,852 KB
testcase_10 AC 249 ms
47,172 KB
testcase_11 AC 219 ms
46,552 KB
testcase_12 AC 237 ms
46,688 KB
testcase_13 AC 245 ms
46,720 KB
testcase_14 AC 140 ms
41,752 KB
testcase_15 WA -
testcase_16 AC 254 ms
47,188 KB
testcase_17 AC 256 ms
47,632 KB
testcase_18 AC 260 ms
46,784 KB
testcase_19 AC 261 ms
47,472 KB
testcase_20 AC 126 ms
41,408 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 127 ms
41,528 KB
testcase_24 AC 162 ms
41,764 KB
testcase_25 AC 176 ms
42,184 KB
testcase_26 AC 114 ms
40,256 KB
testcase_27 AC 127 ms
41,496 KB
testcase_28 AC 115 ms
41,496 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 127 ms
41,152 KB
testcase_32 AC 128 ms
41,404 KB
testcase_33 AC 127 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Yuki1 {
	
	public static void main(String[] argas) {
	
		Scanner scan = new Scanner(System.in);
		// 箱の幅
		int box = scan.nextInt();
		// ブロックの数
		int blockCount = scan.nextInt();
	
		int[] blockWidth = new int [blockCount];
				
		for (int i = 0; i < blockWidth.length; i++) {
			blockWidth[i] = scan.nextInt();
		}
		
		Arrays.sort(blockWidth);
		
		int boxWidthAll = 0;
		int boxWidthAllCount = 0;
		
		while(box>boxWidthAll && blockCount>boxWidthAllCount){
			
			boxWidthAll +=blockWidth[boxWidthAllCount];

			if(box>boxWidthAll) {
				boxWidthAllCount++;
			}
		}
		
		System.out.println(boxWidthAllCount);
	}	
}
0