結果

問題 No.5 数字のブロック
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 20:02:35
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 407 bytes
コンパイル時間 3,138 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-04 19:21:02
合計ジャッジ時間 10,461 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,972 KB
testcase_01 AC 117 ms
41,580 KB
testcase_02 RE -
testcase_03 AC 215 ms
46,656 KB
testcase_04 AC 191 ms
45,936 KB
testcase_05 AC 232 ms
46,232 KB
testcase_06 AC 205 ms
46,068 KB
testcase_07 AC 194 ms
46,060 KB
testcase_08 AC 215 ms
46,736 KB
testcase_09 AC 176 ms
43,884 KB
testcase_10 AC 218 ms
47,316 KB
testcase_11 AC 197 ms
46,476 KB
testcase_12 AC 217 ms
46,800 KB
testcase_13 AC 223 ms
47,012 KB
testcase_14 AC 125 ms
41,644 KB
testcase_15 AC 145 ms
42,000 KB
testcase_16 AC 228 ms
47,132 KB
testcase_17 AC 239 ms
47,984 KB
testcase_18 AC 237 ms
47,140 KB
testcase_19 AC 243 ms
47,976 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 104 ms
40,236 KB
testcase_24 AC 146 ms
41,696 KB
testcase_25 AC 156 ms
42,368 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 204 ms
45,724 KB
testcase_30 AC 186 ms
43,712 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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);
		System.out.println(t-1);
	}

}
0