結果

問題 No.5 数字のブロック
ユーザー papipenpapipen
提出日時 2017-03-26 14:04:51
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 1,660 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 58,892 KB
最終ジャッジ日時 2024-07-06 06:26:45
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
53,204 KB
testcase_01 AC 106 ms
53,136 KB
testcase_02 RE -
testcase_03 AC 203 ms
57,896 KB
testcase_04 AC 180 ms
57,372 KB
testcase_05 AC 204 ms
58,576 KB
testcase_06 AC 191 ms
57,412 KB
testcase_07 AC 187 ms
57,224 KB
testcase_08 AC 199 ms
58,552 KB
testcase_09 AC 169 ms
56,652 KB
testcase_10 AC 213 ms
58,892 KB
testcase_11 AC 186 ms
57,792 KB
testcase_12 AC 197 ms
58,440 KB
testcase_13 AC 203 ms
58,276 KB
testcase_14 AC 115 ms
54,220 KB
testcase_15 AC 134 ms
53,928 KB
testcase_16 AC 206 ms
58,812 KB
testcase_17 AC 218 ms
58,764 KB
testcase_18 AC 226 ms
57,776 KB
testcase_19 AC 231 ms
58,464 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 108 ms
54,468 KB
testcase_24 AC 140 ms
54,320 KB
testcase_25 AC 147 ms
54,192 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 184 ms
57,420 KB
testcase_30 AC 169 ms
56,736 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Block{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int L = s.nextInt();
		int N = s.nextInt();
		int W[] = new int[N];
		for(int i = 0; i < N; i++){
			W[i] = s.nextInt();
		}
		Arrays.sort(W);
		
		int sum = 0;
		int j = 0;
		while(sum <= L){
			sum += W[j];
			j++;
		}
		System.out.println(j-1);
	}
}
0