結果

問題 No.5 数字のブロック
ユーザー barrett114514barrett114514
提出日時 2017-07-21 23:24:49
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 4,221 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 47,788 KB
最終ジャッジ日時 2024-10-09 04:24:08
合計ジャッジ時間 10,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,728 KB
testcase_01 AC 111 ms
40,668 KB
testcase_02 AC 107 ms
40,864 KB
testcase_03 AC 215 ms
46,028 KB
testcase_04 AC 195 ms
45,116 KB
testcase_05 AC 229 ms
47,016 KB
testcase_06 AC 215 ms
45,908 KB
testcase_07 AC 204 ms
45,540 KB
testcase_08 AC 216 ms
46,636 KB
testcase_09 AC 174 ms
43,028 KB
testcase_10 AC 232 ms
46,728 KB
testcase_11 AC 198 ms
45,608 KB
testcase_12 AC 216 ms
46,112 KB
testcase_13 AC 226 ms
46,180 KB
testcase_14 AC 129 ms
41,736 KB
testcase_15 AC 138 ms
41,404 KB
testcase_16 AC 233 ms
46,072 KB
testcase_17 AC 238 ms
47,380 KB
testcase_18 AC 236 ms
47,332 KB
testcase_19 AC 245 ms
47,788 KB
testcase_20 RE -
testcase_21 AC 95 ms
39,508 KB
testcase_22 AC 113 ms
41,228 KB
testcase_23 AC 97 ms
39,752 KB
testcase_24 AC 135 ms
41,400 KB
testcase_25 AC 152 ms
41,544 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 187 ms
45,112 KB
testcase_30 AC 175 ms
43,360 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