結果

問題 No.5 数字のブロック
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:11:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 3,478 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 47,760 KB
最終ジャッジ日時 2024-11-18 10:58:03
合計ジャッジ時間 10,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,364 KB
testcase_01 AC 116 ms
41,300 KB
testcase_02 AC 128 ms
41,204 KB
testcase_03 AC 234 ms
47,064 KB
testcase_04 AC 214 ms
45,972 KB
testcase_05 AC 242 ms
47,216 KB
testcase_06 AC 230 ms
46,220 KB
testcase_07 AC 220 ms
45,828 KB
testcase_08 AC 223 ms
47,048 KB
testcase_09 AC 204 ms
43,696 KB
testcase_10 AC 251 ms
47,496 KB
testcase_11 AC 215 ms
45,620 KB
testcase_12 AC 237 ms
46,552 KB
testcase_13 AC 247 ms
47,020 KB
testcase_14 AC 145 ms
41,572 KB
testcase_15 AC 158 ms
41,792 KB
testcase_16 AC 258 ms
46,368 KB
testcase_17 AC 269 ms
47,760 KB
testcase_18 AC 272 ms
47,516 KB
testcase_19 AC 262 ms
47,672 KB
testcase_20 AC 130 ms
41,448 KB
testcase_21 AC 127 ms
41,180 KB
testcase_22 AC 125 ms
41,316 KB
testcase_23 AC 117 ms
41,376 KB
testcase_24 AC 162 ms
41,748 KB
testcase_25 AC 176 ms
42,212 KB
testcase_26 AC 133 ms
41,104 KB
testcase_27 AC 130 ms
41,248 KB
testcase_28 AC 131 ms
41,472 KB
testcase_29 AC 224 ms
45,752 KB
testcase_30 AC 207 ms
43,540 KB
testcase_31 AC 120 ms
39,968 KB
testcase_32 AC 134 ms
41,468 KB
testcase_33 AC 130 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class NumberBlock {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int L = s.nextInt(), N = s.nextInt(), sum = 0;
		
		int[] W = new int[N];
		for(int i = 0;i<N;i++){
			W[i] = s.nextInt();
		}
		s.close();
		Arrays.sort(W);
		int t=0;
		do{
			sum += W[t++];
		}while(sum <= L && t< N);
		if(sum > L){
			System.out.println(t-1);
		}else{
			System.out.println(t);
		}
	}

}
0