結果

問題 No.5 数字のブロック
ユーザー hhgfhn1hhgfhn1
提出日時 2018-08-20 23:49:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 264 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 76,164 KB
実行使用メモリ 59,116 KB
最終ジャッジ日時 2024-11-18 12:33:42
合計ジャッジ時間 9,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,916 KB
testcase_01 AC 108 ms
52,756 KB
testcase_02 AC 118 ms
54,044 KB
testcase_03 AC 230 ms
58,608 KB
testcase_04 AC 206 ms
57,736 KB
testcase_05 AC 237 ms
58,876 KB
testcase_06 AC 221 ms
58,092 KB
testcase_07 AC 206 ms
57,612 KB
testcase_08 AC 225 ms
57,884 KB
testcase_09 AC 190 ms
56,576 KB
testcase_10 AC 249 ms
58,756 KB
testcase_11 AC 211 ms
57,484 KB
testcase_12 AC 223 ms
58,232 KB
testcase_13 AC 237 ms
58,404 KB
testcase_14 AC 131 ms
54,232 KB
testcase_15 AC 138 ms
53,832 KB
testcase_16 AC 242 ms
58,548 KB
testcase_17 AC 262 ms
59,116 KB
testcase_18 AC 264 ms
59,016 KB
testcase_19 AC 259 ms
58,960 KB
testcase_20 AC 107 ms
52,960 KB
testcase_21 AC 118 ms
54,096 KB
testcase_22 AC 115 ms
54,048 KB
testcase_23 AC 120 ms
53,948 KB
testcase_24 AC 154 ms
54,052 KB
testcase_25 AC 166 ms
54,428 KB
testcase_26 AC 109 ms
52,964 KB
testcase_27 AC 109 ms
52,956 KB
testcase_28 AC 106 ms
52,840 KB
testcase_29 AC 198 ms
57,620 KB
testcase_30 AC 190 ms
56,704 KB
testcase_31 AC 115 ms
53,664 KB
testcase_32 AC 109 ms
53,080 KB
testcase_33 AC 117 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class sampleA {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		int l = scan.nextInt();
		int n = scan.nextInt();
		int answer = 0;
		List<Integer> blocksLength = new ArrayList<>();
		int sumW = 0;

		for (int i = 0; i < n; i++) {
			blocksLength.add(scan.nextInt());
		}

		scan.close();
		Collections.sort(blocksLength);

		for (int w : blocksLength) {
			if (sumW + w <= l) {
				sumW += w;
				answer++;

			} else {
				break;
			}
		}
		System.out.print(answer);
	}
}
0