結果

問題 No.5 数字のブロック
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-04 02:00:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 76,884 KB
実行使用メモリ 59,132 KB
最終ジャッジ日時 2024-11-18 12:16:52
合計ジャッジ時間 9,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,832 KB
testcase_01 AC 129 ms
53,844 KB
testcase_02 AC 132 ms
53,960 KB
testcase_03 AC 252 ms
58,668 KB
testcase_04 AC 230 ms
57,792 KB
testcase_05 AC 269 ms
58,660 KB
testcase_06 AC 238 ms
58,016 KB
testcase_07 AC 222 ms
57,328 KB
testcase_08 AC 238 ms
58,452 KB
testcase_09 AC 202 ms
56,812 KB
testcase_10 AC 272 ms
59,132 KB
testcase_11 AC 226 ms
57,712 KB
testcase_12 AC 245 ms
58,480 KB
testcase_13 AC 254 ms
58,368 KB
testcase_14 AC 140 ms
54,028 KB
testcase_15 AC 156 ms
53,932 KB
testcase_16 AC 251 ms
58,468 KB
testcase_17 AC 270 ms
59,000 KB
testcase_18 AC 269 ms
58,968 KB
testcase_19 AC 269 ms
59,056 KB
testcase_20 AC 125 ms
53,908 KB
testcase_21 AC 126 ms
54,060 KB
testcase_22 AC 125 ms
54,196 KB
testcase_23 AC 115 ms
54,248 KB
testcase_24 AC 160 ms
54,284 KB
testcase_25 AC 179 ms
54,472 KB
testcase_26 AC 130 ms
54,088 KB
testcase_27 AC 126 ms
54,120 KB
testcase_28 AC 127 ms
54,128 KB
testcase_29 AC 222 ms
57,560 KB
testcase_30 AC 205 ms
56,588 KB
testcase_31 AC 128 ms
54,012 KB
testcase_32 AC 128 ms
54,068 KB
testcase_33 AC 115 ms
52,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder1_0;

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 L = sc.nextInt();
		int N = sc.nextInt();

		ArrayList<Integer> w = new ArrayList<Integer>();
		for(int i = 0; i < N; i++) {
			w.add(sc.nextInt());
		}

		Collections.sort(w);

		int sum = 0;
		int count =0;
		for(int i : w) {
			if(sum+i<= L)  {
				sum +=i;
				count++;
			}else {
				break;
			}
		}

		System.out.println(count);

	}
}
0