結果

問題 No.5 数字のブロック
ユーザー hhgfhn1hhgfhn1
提出日時 2018-08-20 23:41:48
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 75,884 KB
実行使用メモリ 47,772 KB
最終ジャッジ日時 2024-11-27 19:10:02
合計ジャッジ時間 9,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,068 KB
testcase_01 AC 99 ms
40,384 KB
testcase_02 WA -
testcase_03 AC 232 ms
46,764 KB
testcase_04 AC 205 ms
46,112 KB
testcase_05 AC 244 ms
46,904 KB
testcase_06 AC 212 ms
46,324 KB
testcase_07 AC 196 ms
45,868 KB
testcase_08 AC 225 ms
46,160 KB
testcase_09 AC 179 ms
43,524 KB
testcase_10 AC 250 ms
47,772 KB
testcase_11 AC 203 ms
45,720 KB
testcase_12 AC 227 ms
46,040 KB
testcase_13 AC 233 ms
46,900 KB
testcase_14 AC 119 ms
41,228 KB
testcase_15 AC 146 ms
41,496 KB
testcase_16 AC 237 ms
46,852 KB
testcase_17 AC 251 ms
47,620 KB
testcase_18 AC 247 ms
46,488 KB
testcase_19 AC 251 ms
47,564 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 113 ms
41,188 KB
testcase_24 AC 133 ms
41,320 KB
testcase_25 AC 155 ms
42,056 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 203 ms
45,844 KB
testcase_30 AC 178 ms
43,820 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