結果

問題 No.5 数字のブロック
ユーザー maruyuki95maruyuki95
提出日時 2020-05-21 16:58:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 48,092 KB
最終ジャッジ日時 2024-10-02 00:04:40
合計ジャッジ時間 9,629 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,004 KB
testcase_01 AC 112 ms
40,040 KB
testcase_02 AC 118 ms
41,224 KB
testcase_03 AC 222 ms
46,908 KB
testcase_04 AC 203 ms
45,748 KB
testcase_05 AC 236 ms
47,136 KB
testcase_06 AC 211 ms
46,164 KB
testcase_07 AC 208 ms
45,636 KB
testcase_08 AC 220 ms
47,004 KB
testcase_09 AC 180 ms
43,568 KB
testcase_10 AC 237 ms
47,576 KB
testcase_11 AC 206 ms
45,912 KB
testcase_12 AC 228 ms
46,384 KB
testcase_13 AC 231 ms
47,100 KB
testcase_14 AC 128 ms
41,208 KB
testcase_15 AC 140 ms
41,440 KB
testcase_16 AC 233 ms
46,532 KB
testcase_17 AC 253 ms
47,580 KB
testcase_18 AC 254 ms
48,092 KB
testcase_19 AC 248 ms
47,572 KB
testcase_20 AC 118 ms
41,076 KB
testcase_21 AC 118 ms
41,184 KB
testcase_22 AC 117 ms
41,244 KB
testcase_23 AC 118 ms
41,264 KB
testcase_24 AC 141 ms
41,424 KB
testcase_25 AC 160 ms
41,696 KB
testcase_26 AC 105 ms
40,076 KB
testcase_27 AC 115 ms
41,180 KB
testcase_28 AC 101 ms
39,884 KB
testcase_29 AC 205 ms
45,620 KB
testcase_30 AC 194 ms
44,024 KB
testcase_31 AC 115 ms
41,240 KB
testcase_32 AC 113 ms
41,484 KB
testcase_33 AC 115 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int boxWidth = sc.nextInt();
		int blockNum = sc.nextInt();
		int[] blockWidths = new int[blockNum];
		for (int i = 0; i < blockNum; i++) {
			blockWidths[i] = sc.nextInt();
		}

		int ret = new Main().execute(boxWidth, blockNum, blockWidths);
		System.out.println(ret);
	}

	private int execute(int boxWidth, int blockNum, int[] blockWidths) {
		int[] sortedBlockWidths = blockWidths.clone();
		Arrays.parallelSort(sortedBlockWidths);

		int sumWidth = 0;
		for (int i = 0; i < sortedBlockWidths.length; i++) {
			sumWidth += sortedBlockWidths[i];
			if (boxWidth < sumWidth) {
				return i;
			}
		}

		return blockNum;
	}


}
0