結果

問題 No.5 数字のブロック
ユーザー barrett114514barrett114514
提出日時 2017-07-21 23:14:45
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 4,214 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-10-09 03:45:59
合計ジャッジ時間 11,549 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,212 KB
testcase_01 AC 132 ms
41,436 KB
testcase_02 AC 116 ms
40,892 KB
testcase_03 AC 237 ms
45,944 KB
testcase_04 AC 217 ms
45,396 KB
testcase_05 AC 255 ms
46,448 KB
testcase_06 AC 222 ms
45,440 KB
testcase_07 AC 216 ms
45,460 KB
testcase_08 AC 230 ms
46,524 KB
testcase_09 AC 202 ms
43,612 KB
testcase_10 AC 252 ms
46,536 KB
testcase_11 AC 224 ms
45,776 KB
testcase_12 AC 244 ms
46,808 KB
testcase_13 AC 245 ms
46,876 KB
testcase_14 AC 142 ms
41,412 KB
testcase_15 AC 161 ms
41,828 KB
testcase_16 AC 254 ms
46,164 KB
testcase_17 AC 257 ms
47,228 KB
testcase_18 AC 253 ms
47,144 KB
testcase_19 AC 263 ms
47,592 KB
testcase_20 RE -
testcase_21 AC 125 ms
41,128 KB
testcase_22 AC 126 ms
41,188 KB
testcase_23 AC 129 ms
40,884 KB
testcase_24 AC 160 ms
41,500 KB
testcase_25 AC 167 ms
42,716 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 218 ms
45,724 KB
testcase_30 AC 199 ms
43,688 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class NumberBlocks {

	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();
		}
		Arrays.sort(W);
		
		for(int i = 0;L > 0;){
			L -= W[i];
			i ++;

			if(L <= 0){
				if(L < 0){
				i = i - 1;
				}
				
				System.out.println(i);
				break;
			}
		}

	}

}
0