結果

問題 No.5 数字のブロック
ユーザー barrett114514barrett114514
提出日時 2017-07-21 23:46:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 47,824 KB
最終ジャッジ日時 2024-11-18 11:32:27
合計ジャッジ時間 11,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,592 KB
testcase_01 AC 117 ms
41,168 KB
testcase_02 AC 132 ms
41,188 KB
testcase_03 AC 240 ms
46,412 KB
testcase_04 AC 218 ms
45,544 KB
testcase_05 AC 244 ms
46,820 KB
testcase_06 AC 232 ms
46,216 KB
testcase_07 AC 229 ms
45,968 KB
testcase_08 AC 229 ms
46,664 KB
testcase_09 AC 183 ms
43,716 KB
testcase_10 AC 249 ms
47,284 KB
testcase_11 AC 214 ms
46,444 KB
testcase_12 AC 244 ms
45,908 KB
testcase_13 AC 251 ms
47,260 KB
testcase_14 AC 139 ms
41,640 KB
testcase_15 AC 163 ms
41,856 KB
testcase_16 AC 256 ms
46,988 KB
testcase_17 AC 263 ms
47,568 KB
testcase_18 AC 263 ms
46,996 KB
testcase_19 AC 271 ms
47,824 KB
testcase_20 AC 130 ms
41,512 KB
testcase_21 AC 118 ms
41,340 KB
testcase_22 AC 129 ms
41,456 KB
testcase_23 AC 128 ms
41,248 KB
testcase_24 AC 161 ms
41,624 KB
testcase_25 AC 186 ms
41,960 KB
testcase_26 AC 136 ms
41,332 KB
testcase_27 AC 136 ms
41,364 KB
testcase_28 AC 136 ms
41,368 KB
testcase_29 AC 224 ms
45,748 KB
testcase_30 AC 205 ms
43,672 KB
testcase_31 AC 126 ms
41,544 KB
testcase_32 AC 127 ms
41,340 KB
testcase_33 AC 128 ms
41,336 KB
権限があれば一括ダウンロードができます

ソースコード

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);
		
		int ans = 0;
		
		for(int i = 0;i < N;i++){
			L -= W[i];

			if(L >= 0){
				ans ++;
			}else{
				break;
			}
		}
		System.out.println(ans);
	}

}
0