結果

問題 No.5 数字のブロック
ユーザー DevbotBotDevbotBot
提出日時 2015-06-25 13:55:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 2,768 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 47,908 KB
最終ジャッジ日時 2024-07-07 17:33:14
合計ジャッジ時間 9,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,204 KB
testcase_01 AC 98 ms
40,208 KB
testcase_02 WA -
testcase_03 AC 206 ms
46,864 KB
testcase_04 AC 192 ms
45,644 KB
testcase_05 WA -
testcase_06 AC 199 ms
46,540 KB
testcase_07 AC 196 ms
45,956 KB
testcase_08 AC 206 ms
46,420 KB
testcase_09 AC 174 ms
43,692 KB
testcase_10 AC 222 ms
47,404 KB
testcase_11 AC 192 ms
45,524 KB
testcase_12 AC 212 ms
46,696 KB
testcase_13 AC 225 ms
47,188 KB
testcase_14 AC 123 ms
41,864 KB
testcase_15 WA -
testcase_16 AC 220 ms
47,028 KB
testcase_17 AC 229 ms
47,536 KB
testcase_18 AC 227 ms
47,908 KB
testcase_19 AC 236 ms
47,696 KB
testcase_20 AC 98 ms
40,184 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 103 ms
40,084 KB
testcase_24 AC 138 ms
41,300 KB
testcase_25 AC 140 ms
41,916 KB
testcase_26 AC 108 ms
40,560 KB
testcase_27 AC 110 ms
40,060 KB
testcase_28 AC 109 ms
40,528 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 111 ms
41,324 KB
testcase_32 AC 95 ms
39,808 KB
testcase_33 AC 97 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No5 {
    public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int n = sc.nextInt();
		int[] w = new int[n];
		int i;
		int count = 0;

		for (i = 0; i < n; i++){
			w[i] += sc.nextInt();
		}

		Arrays.sort(w);
		for (i = 0; i < n; i++){
			l -= w[i];
			if (l <= 0){
				break;
			}
			count++;
		}
		System.out.println(count);
	}
}
0