結果

問題 No.5 数字のブロック
ユーザー len_proglen_prog
提出日時 2016-06-08 09:34:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 520 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 74,532 KB
実行使用メモリ 58,732 KB
最終ジャッジ日時 2024-11-18 08:41:21
合計ジャッジ時間 8,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,088 KB
testcase_01 AC 120 ms
54,324 KB
testcase_02 AC 116 ms
53,996 KB
testcase_03 AC 218 ms
58,344 KB
testcase_04 AC 197 ms
57,168 KB
testcase_05 AC 236 ms
57,880 KB
testcase_06 AC 213 ms
57,640 KB
testcase_07 AC 209 ms
57,404 KB
testcase_08 AC 220 ms
57,968 KB
testcase_09 AC 182 ms
55,056 KB
testcase_10 AC 227 ms
58,220 KB
testcase_11 AC 205 ms
57,844 KB
testcase_12 AC 223 ms
58,592 KB
testcase_13 AC 229 ms
58,732 KB
testcase_14 AC 130 ms
54,152 KB
testcase_15 AC 138 ms
41,752 KB
testcase_16 AC 227 ms
46,968 KB
testcase_17 AC 244 ms
47,748 KB
testcase_18 AC 234 ms
47,860 KB
testcase_19 AC 256 ms
47,664 KB
testcase_20 AC 114 ms
41,544 KB
testcase_21 AC 101 ms
40,300 KB
testcase_22 AC 113 ms
41,560 KB
testcase_23 AC 115 ms
41,440 KB
testcase_24 AC 148 ms
42,088 KB
testcase_25 AC 154 ms
42,344 KB
testcase_26 AC 111 ms
41,416 KB
testcase_27 AC 115 ms
41,212 KB
testcase_28 AC 117 ms
41,252 KB
testcase_29 AC 200 ms
46,104 KB
testcase_30 AC 178 ms
43,928 KB
testcase_31 AC 107 ms
40,300 KB
testcase_32 AC 102 ms
40,260 KB
testcase_33 AC 107 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int L = scan.nextInt();
		int N = scan.nextInt();
		int[] numbers = new int[N];

		for(int i = 0; i < numbers.length; i++){
			numbers[i] = scan.nextInt();
		}

		Arrays.sort(numbers);
		int total = 0;
		int count = 0;

		for(int i = 0; i < numbers.length; i++){
			total += numbers[i];
			if(total > L) break;

			count++;
		}
		System.out.println(count);
	}

}
0