結果

問題 No.5 数字のブロック
ユーザー hhgfhn1hhgfhn1
提出日時 2018-08-20 23:41:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 75,912 KB
実行使用メモリ 48,104 KB
最終ジャッジ日時 2024-05-05 18:56:52
合計ジャッジ時間 10,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,332 KB
testcase_01 AC 135 ms
41,504 KB
testcase_02 WA -
testcase_03 AC 258 ms
47,076 KB
testcase_04 AC 240 ms
45,572 KB
testcase_05 AC 268 ms
47,464 KB
testcase_06 AC 249 ms
46,872 KB
testcase_07 AC 232 ms
45,740 KB
testcase_08 AC 253 ms
46,716 KB
testcase_09 AC 210 ms
43,820 KB
testcase_10 AC 283 ms
47,820 KB
testcase_11 AC 241 ms
45,856 KB
testcase_12 AC 255 ms
46,448 KB
testcase_13 AC 266 ms
46,412 KB
testcase_14 AC 146 ms
41,180 KB
testcase_15 AC 160 ms
41,688 KB
testcase_16 AC 270 ms
47,240 KB
testcase_17 AC 289 ms
47,636 KB
testcase_18 AC 288 ms
47,484 KB
testcase_19 AC 295 ms
48,104 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 132 ms
41,156 KB
testcase_24 AC 162 ms
41,696 KB
testcase_25 AC 185 ms
42,248 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 231 ms
45,924 KB
testcase_30 AC 212 ms
44,116 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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 {
				System.out.print(answer);
				break;
			}
		}
	}
}
0