結果

問題 No.5 数字のブロック
ユーザー b4belb4bel
提出日時 2015-05-24 17:41:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 3,648 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 58,928 KB
最終ジャッジ日時 2024-11-17 22:47:41
合計ジャッジ時間 9,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
52,948 KB
testcase_01 AC 112 ms
53,864 KB
testcase_02 AC 101 ms
53,116 KB
testcase_03 AC 218 ms
57,816 KB
testcase_04 AC 197 ms
57,256 KB
testcase_05 AC 249 ms
58,120 KB
testcase_06 AC 206 ms
57,928 KB
testcase_07 AC 201 ms
57,320 KB
testcase_08 AC 221 ms
58,232 KB
testcase_09 AC 171 ms
56,688 KB
testcase_10 AC 221 ms
58,512 KB
testcase_11 AC 200 ms
57,464 KB
testcase_12 AC 211 ms
58,264 KB
testcase_13 AC 223 ms
58,260 KB
testcase_14 AC 124 ms
54,016 KB
testcase_15 AC 145 ms
54,096 KB
testcase_16 AC 219 ms
57,988 KB
testcase_17 AC 230 ms
58,676 KB
testcase_18 AC 218 ms
58,516 KB
testcase_19 AC 224 ms
58,928 KB
testcase_20 AC 104 ms
53,076 KB
testcase_21 AC 102 ms
53,144 KB
testcase_22 AC 102 ms
53,072 KB
testcase_23 AC 113 ms
54,080 KB
testcase_24 AC 136 ms
54,036 KB
testcase_25 AC 144 ms
54,460 KB
testcase_26 AC 110 ms
53,872 KB
testcase_27 AC 114 ms
53,612 KB
testcase_28 AC 109 ms
53,108 KB
testcase_29 AC 195 ms
57,164 KB
testcase_30 AC 173 ms
56,652 KB
testcase_31 AC 96 ms
53,736 KB
testcase_32 AC 111 ms
53,816 KB
testcase_33 AC 101 ms
53,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package coder;

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

public class No5 {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);

		int width = scanner.nextInt();
		int num = scanner.nextInt();
		int[] blockWidth = new int[num];

		for(int i = 0; i < num; i++) {
			blockWidth[i] = scanner.nextInt();
		}

		Arrays.sort(blockWidth);

		int sum = 0;
		int maxNum = 0;
		for(int i = 0; i < num; i++) {
			sum += blockWidth[i];
			if(sum > width) {
				break;
			}
			maxNum++;
		}
		System.out.println(maxNum);

		scanner.close();
	}

}
0