結果

問題 No.5 数字のブロック
ユーザー 練習生練習生
提出日時 2015-08-15 17:54:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 2,789 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 58,532 KB
最終ジャッジ日時 2024-11-18 07:30:28
合計ジャッジ時間 8,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
52,764 KB
testcase_01 AC 119 ms
54,124 KB
testcase_02 AC 100 ms
54,012 KB
testcase_03 AC 192 ms
57,816 KB
testcase_04 AC 182 ms
57,372 KB
testcase_05 AC 204 ms
58,144 KB
testcase_06 AC 185 ms
57,488 KB
testcase_07 AC 179 ms
57,444 KB
testcase_08 AC 191 ms
57,996 KB
testcase_09 AC 167 ms
56,896 KB
testcase_10 AC 210 ms
57,732 KB
testcase_11 AC 179 ms
57,608 KB
testcase_12 AC 193 ms
57,956 KB
testcase_13 AC 215 ms
58,024 KB
testcase_14 AC 114 ms
53,972 KB
testcase_15 AC 122 ms
53,928 KB
testcase_16 AC 209 ms
58,288 KB
testcase_17 AC 213 ms
57,872 KB
testcase_18 AC 214 ms
57,896 KB
testcase_19 AC 226 ms
58,532 KB
testcase_20 AC 93 ms
52,648 KB
testcase_21 AC 98 ms
53,072 KB
testcase_22 AC 105 ms
54,136 KB
testcase_23 AC 92 ms
52,768 KB
testcase_24 AC 135 ms
54,284 KB
testcase_25 AC 145 ms
54,328 KB
testcase_26 AC 103 ms
54,148 KB
testcase_27 AC 104 ms
54,012 KB
testcase_28 AC 103 ms
54,020 KB
testcase_29 AC 186 ms
57,460 KB
testcase_30 AC 168 ms
56,964 KB
testcase_31 AC 104 ms
54,160 KB
testcase_32 AC 94 ms
52,960 KB
testcase_33 AC 92 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No5 {
	public static void main(String[] args) {
		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();
		}
		sc.close();
		// ブロックの中から最小のものを1つずつ探して箱に入れる
		int lin = 0;
		int count = 0;
		while(l >= lin){
			int min = l;
			int minIndex = 0;
			for(int i = 0; i < w.length; i++){
				if(w[i] < min){
					min = w[i];
					minIndex = i;
				}
			}
			lin = lin + min;
			w[minIndex] = l;
			count++;
		}
		count--;
		System.out.println(count);
	}
}
0