結果

問題 No.5 数字のブロック
ユーザー springspring
提出日時 2019-06-12 15:37:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 295 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 76,276 KB
実行使用メモリ 57,544 KB
最終ジャッジ日時 2024-10-10 20:59:15
合計ジャッジ時間 10,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,184 KB
testcase_01 AC 132 ms
40,804 KB
testcase_02 AC 133 ms
41,140 KB
testcase_03 AC 260 ms
46,968 KB
testcase_04 AC 236 ms
57,544 KB
testcase_05 AC 273 ms
46,748 KB
testcase_06 AC 244 ms
46,352 KB
testcase_07 AC 235 ms
45,780 KB
testcase_08 AC 250 ms
46,972 KB
testcase_09 AC 196 ms
43,848 KB
testcase_10 AC 271 ms
47,656 KB
testcase_11 AC 226 ms
45,760 KB
testcase_12 AC 256 ms
46,568 KB
testcase_13 AC 266 ms
46,816 KB
testcase_14 AC 144 ms
41,508 KB
testcase_15 AC 156 ms
41,740 KB
testcase_16 AC 260 ms
47,344 KB
testcase_17 AC 294 ms
47,484 KB
testcase_18 AC 295 ms
47,392 KB
testcase_19 AC 289 ms
47,580 KB
testcase_20 AC 131 ms
41,156 KB
testcase_21 AC 129 ms
41,188 KB
testcase_22 AC 128 ms
40,812 KB
testcase_23 AC 126 ms
40,908 KB
testcase_24 AC 165 ms
41,748 KB
testcase_25 AC 177 ms
41,564 KB
testcase_26 AC 129 ms
40,960 KB
testcase_27 AC 116 ms
39,748 KB
testcase_28 AC 127 ms
41,064 KB
testcase_29 AC 237 ms
46,252 KB
testcase_30 AC 202 ms
43,936 KB
testcase_31 AC 128 ms
40,932 KB
testcase_32 AC 126 ms
40,960 KB
testcase_33 AC 133 ms
41,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int box = sc.nextInt();
		int count = sc.nextInt();
		ArrayList<Integer> boxlist = new ArrayList<Integer>();
		for(int i=0;i<count;i++){
			int input = sc.nextInt();
			boxlist.add(input);
		}
		sc.close();
		Collections.sort(boxlist);
		int total=0;
		int result = 0;
		for(int k=0;box>total&&boxlist.size()>k;k++){
			total += boxlist.get(k);
			if(box>=total){
				result++;
			}else{
				break;
			}
		}
		System.out.println(result);
	}// mainmethod

} // cla
0