結果

問題 No.5 数字のブロック
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-10 11:13:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 59,192 KB
最終ジャッジ日時 2024-11-18 08:35:58
合計ジャッジ時間 9,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,668 KB
testcase_01 AC 119 ms
54,388 KB
testcase_02 AC 107 ms
52,932 KB
testcase_03 AC 219 ms
58,596 KB
testcase_04 AC 198 ms
57,560 KB
testcase_05 AC 228 ms
58,896 KB
testcase_06 AC 199 ms
58,032 KB
testcase_07 AC 199 ms
57,476 KB
testcase_08 AC 207 ms
58,324 KB
testcase_09 AC 181 ms
56,944 KB
testcase_10 AC 225 ms
58,484 KB
testcase_11 AC 197 ms
57,464 KB
testcase_12 AC 226 ms
58,252 KB
testcase_13 AC 228 ms
58,228 KB
testcase_14 AC 118 ms
53,600 KB
testcase_15 AC 131 ms
54,216 KB
testcase_16 AC 233 ms
58,740 KB
testcase_17 AC 241 ms
58,836 KB
testcase_18 AC 228 ms
58,172 KB
testcase_19 AC 245 ms
59,192 KB
testcase_20 AC 114 ms
53,836 KB
testcase_21 AC 116 ms
54,124 KB
testcase_22 AC 116 ms
54,168 KB
testcase_23 AC 115 ms
54,244 KB
testcase_24 AC 143 ms
54,228 KB
testcase_25 AC 159 ms
54,736 KB
testcase_26 AC 103 ms
53,052 KB
testcase_27 AC 97 ms
52,676 KB
testcase_28 AC 113 ms
54,156 KB
testcase_29 AC 192 ms
57,484 KB
testcase_30 AC 173 ms
56,764 KB
testcase_31 AC 113 ms
54,196 KB
testcase_32 AC 102 ms
53,124 KB
testcase_33 AC 117 ms
54,228 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;
		
		for (int i = 0; i < blockWidth.length; i++) {

			boxWidthAll = boxWidthAll + blockWidth[i];
			
			if ( box < boxWidthAll) {
				break;
			}
			
			boxWidthAllCount++;
		}
		
		System.out.println(boxWidthAllCount);
	}	
}
0