結果

問題 No.5 数字のブロック
ユーザー kano_townkano_town
提出日時 2014-11-21 19:14:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 457 bytes
コンパイル時間 3,018 ms
コンパイル使用メモリ 75,372 KB
実行使用メモリ 58,848 KB
最終ジャッジ日時 2024-06-10 21:31:34
合計ジャッジ時間 9,683 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,700 KB
testcase_01 AC 101 ms
40,372 KB
testcase_02 WA -
testcase_03 AC 213 ms
46,480 KB
testcase_04 AC 198 ms
45,768 KB
testcase_05 WA -
testcase_06 AC 199 ms
45,980 KB
testcase_07 AC 200 ms
46,132 KB
testcase_08 AC 204 ms
47,132 KB
testcase_09 AC 180 ms
44,080 KB
testcase_10 AC 224 ms
46,832 KB
testcase_11 AC 196 ms
46,368 KB
testcase_12 AC 217 ms
46,920 KB
testcase_13 AC 229 ms
47,416 KB
testcase_14 AC 125 ms
41,708 KB
testcase_15 WA -
testcase_16 AC 221 ms
47,204 KB
testcase_17 AC 239 ms
47,824 KB
testcase_18 AC 238 ms
47,996 KB
testcase_19 AC 243 ms
47,600 KB
testcase_20 AC 112 ms
41,440 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 107 ms
41,288 KB
testcase_24 AC 146 ms
41,852 KB
testcase_25 AC 153 ms
42,460 KB
testcase_26 AC 100 ms
40,404 KB
testcase_27 AC 99 ms
40,156 KB
testcase_28 AC 111 ms
41,408 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 106 ms
39,996 KB
testcase_32 AC 104 ms
40,308 KB
testcase_33 AC 100 ms
40,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder05 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int N = sc.nextInt();
		int[] W = new int[N];
		for (int i = 0; i < N; i++) {
			W[i] = sc.nextInt();
		}
		Arrays.sort(W);
		
		int i, sum = 0;
		for (i = 0; i < N; i++) {
			sum += W[i];
			if (sum >= L) break;
		}
		System.out.println(i);
	}
}
0