結果

問題 No.5 数字のブロック
ユーザー eagleeagle
提出日時 2022-05-26 15:27:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 459 ms / 5,000 ms
コード長 862 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,532 KB
実行使用メモリ 47,636 KB
最終ジャッジ日時 2024-09-20 15:01:11
合計ジャッジ時間 10,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,172 KB
testcase_01 AC 99 ms
40,368 KB
testcase_02 AC 112 ms
41,272 KB
testcase_03 AC 337 ms
46,996 KB
testcase_04 AC 290 ms
47,036 KB
testcase_05 AC 383 ms
46,884 KB
testcase_06 AC 292 ms
47,072 KB
testcase_07 AC 250 ms
45,872 KB
testcase_08 AC 317 ms
47,068 KB
testcase_09 AC 204 ms
43,860 KB
testcase_10 AC 380 ms
47,620 KB
testcase_11 AC 267 ms
47,108 KB
testcase_12 AC 328 ms
46,968 KB
testcase_13 AC 370 ms
47,468 KB
testcase_14 AC 124 ms
41,932 KB
testcase_15 AC 128 ms
41,284 KB
testcase_16 AC 373 ms
47,040 KB
testcase_17 AC 432 ms
47,360 KB
testcase_18 AC 453 ms
47,636 KB
testcase_19 AC 459 ms
47,404 KB
testcase_20 AC 100 ms
40,076 KB
testcase_21 AC 98 ms
40,256 KB
testcase_22 AC 109 ms
40,956 KB
testcase_23 AC 99 ms
40,152 KB
testcase_24 AC 142 ms
42,236 KB
testcase_25 AC 173 ms
42,080 KB
testcase_26 AC 112 ms
41,280 KB
testcase_27 AC 112 ms
41,164 KB
testcase_28 AC 100 ms
40,232 KB
testcase_29 AC 258 ms
47,148 KB
testcase_30 AC 211 ms
44,296 KB
testcase_31 AC 114 ms
41,244 KB
testcase_32 AC 102 ms
39,936 KB
testcase_33 AC 108 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//大きな箱の幅
		int L = sc.nextInt();
		//ブロックの数
		int N = sc.nextInt();
		//各ブロックの幅
		int[] W = new int[N];
		for(int i = 0; i < N; i++) {
			W[i] = sc.nextInt();
		}
		//配列Wを小さい順に並び替える
		for(int i = 0; i < N - 1; i++) {
			for(int j = i; j < N; j++) {
				if(W[i] > W[j]) {
					int num = W[i];
					W[i] = W[j];
					W[j] = num;
				}
			}
		}
		//大きな箱に小さい箱から順に入れていく
		int w = 0; //現在の幅
		int ans = 0; //大きな箱に入れた箱の個数
		for(int i = 0; i < N; i++) {
			if(w + W[i] > L) {
				break;
			}
			w += W[i];
			ans++;
		}
		System.out.println(ans);
	}
}
0