結果

問題 No.5 数字のブロック
ユーザー 練習生練習生
提出日時 2015-08-15 17:48:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 74,948 KB
実行使用メモリ 58,516 KB
最終ジャッジ日時 2024-07-18 09:43:57
合計ジャッジ時間 9,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,900 KB
testcase_01 AC 108 ms
53,284 KB
testcase_02 WA -
testcase_03 AC 208 ms
57,984 KB
testcase_04 AC 206 ms
57,544 KB
testcase_05 WA -
testcase_06 AC 201 ms
57,528 KB
testcase_07 AC 198 ms
57,420 KB
testcase_08 AC 202 ms
57,568 KB
testcase_09 AC 171 ms
56,752 KB
testcase_10 AC 241 ms
58,516 KB
testcase_11 AC 219 ms
57,352 KB
testcase_12 AC 210 ms
57,328 KB
testcase_13 AC 222 ms
57,528 KB
testcase_14 AC 123 ms
54,124 KB
testcase_15 WA -
testcase_16 AC 221 ms
58,256 KB
testcase_17 AC 224 ms
57,984 KB
testcase_18 AC 232 ms
57,828 KB
testcase_19 AC 245 ms
58,200 KB
testcase_20 AC 104 ms
53,124 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 121 ms
54,396 KB
testcase_24 AC 136 ms
54,224 KB
testcase_25 AC 160 ms
54,160 KB
testcase_26 AC 115 ms
54,068 KB
testcase_27 AC 115 ms
54,180 KB
testcase_28 AC 114 ms
54,080 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 112 ms
54,092 KB
testcase_32 AC 115 ms
53,928 KB
testcase_33 AC 109 ms
53,888 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