結果

問題 No.5 数字のブロック
ユーザー kano_townkano_town
提出日時 2014-11-21 19:15:19
言語 Java
(openjdk 23)
結果
AC  
実行時間 229 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 2,786 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 59,096 KB
最終ジャッジ日時 2024-11-17 22:15:49
合計ジャッジ時間 8,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
52,772 KB
testcase_01 AC 104 ms
53,996 KB
testcase_02 AC 106 ms
53,988 KB
testcase_03 AC 197 ms
57,796 KB
testcase_04 AC 168 ms
57,208 KB
testcase_05 AC 206 ms
58,812 KB
testcase_06 AC 190 ms
57,500 KB
testcase_07 AC 185 ms
57,712 KB
testcase_08 AC 197 ms
57,724 KB
testcase_09 AC 162 ms
56,568 KB
testcase_10 AC 216 ms
57,848 KB
testcase_11 AC 189 ms
57,960 KB
testcase_12 AC 229 ms
57,592 KB
testcase_13 AC 206 ms
58,336 KB
testcase_14 AC 114 ms
54,072 KB
testcase_15 AC 121 ms
54,124 KB
testcase_16 AC 209 ms
58,340 KB
testcase_17 AC 221 ms
59,096 KB
testcase_18 AC 218 ms
57,936 KB
testcase_19 AC 227 ms
58,748 KB
testcase_20 AC 105 ms
54,064 KB
testcase_21 AC 99 ms
53,756 KB
testcase_22 AC 102 ms
54,104 KB
testcase_23 AC 102 ms
53,968 KB
testcase_24 AC 129 ms
54,368 KB
testcase_25 AC 146 ms
54,308 KB
testcase_26 AC 103 ms
53,800 KB
testcase_27 AC 102 ms
54,068 KB
testcase_28 AC 103 ms
53,868 KB
testcase_29 AC 181 ms
57,476 KB
testcase_30 AC 160 ms
56,764 KB
testcase_31 AC 105 ms
53,820 KB
testcase_32 AC 91 ms
52,568 KB
testcase_33 AC 96 ms
52,988 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