結果

問題 No.5 数字のブロック
ユーザー springspring
提出日時 2019-06-12 15:33:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 652 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 75,836 KB
実行使用メモリ 47,756 KB
最終ジャッジ日時 2024-10-10 20:50:22
合計ジャッジ時間 10,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,180 KB
testcase_01 AC 116 ms
39,916 KB
testcase_02 WA -
testcase_03 AC 255 ms
46,816 KB
testcase_04 AC 235 ms
46,428 KB
testcase_05 WA -
testcase_06 AC 251 ms
46,020 KB
testcase_07 AC 242 ms
46,076 KB
testcase_08 AC 248 ms
46,360 KB
testcase_09 AC 214 ms
43,500 KB
testcase_10 AC 286 ms
47,396 KB
testcase_11 AC 241 ms
45,724 KB
testcase_12 AC 258 ms
46,120 KB
testcase_13 AC 276 ms
46,880 KB
testcase_14 AC 152 ms
41,076 KB
testcase_15 WA -
testcase_16 AC 272 ms
46,580 KB
testcase_17 AC 284 ms
47,388 KB
testcase_18 AC 294 ms
47,392 KB
testcase_19 AC 303 ms
47,756 KB
testcase_20 AC 133 ms
41,152 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
39,844 KB
testcase_24 AC 166 ms
41,792 KB
testcase_25 AC 179 ms
42,080 KB
testcase_26 AC 130 ms
41,196 KB
testcase_27 AC 117 ms
40,016 KB
testcase_28 AC 118 ms
40,080 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 117 ms
39,844 KB
testcase_32 AC 120 ms
40,040 KB
testcase_33 AC 134 ms
40,856 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

} // class
0