結果

問題 No.5 数字のブロック
ユーザー ぴろずぴろず
提出日時 2014-12-21 01:04:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 481 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 58,852 KB
最終ジャッジ日時 2024-11-17 22:15:27
合計ジャッジ時間 7,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,672 KB
testcase_01 AC 104 ms
53,812 KB
testcase_02 AC 103 ms
53,732 KB
testcase_03 AC 199 ms
58,344 KB
testcase_04 AC 184 ms
57,228 KB
testcase_05 AC 213 ms
57,920 KB
testcase_06 AC 196 ms
57,600 KB
testcase_07 AC 180 ms
57,320 KB
testcase_08 AC 198 ms
58,008 KB
testcase_09 AC 161 ms
56,460 KB
testcase_10 AC 210 ms
58,620 KB
testcase_11 AC 183 ms
57,160 KB
testcase_12 AC 202 ms
58,056 KB
testcase_13 AC 207 ms
58,384 KB
testcase_14 AC 114 ms
54,012 KB
testcase_15 AC 124 ms
54,328 KB
testcase_16 AC 211 ms
58,460 KB
testcase_17 AC 214 ms
58,184 KB
testcase_18 AC 214 ms
58,852 KB
testcase_19 AC 212 ms
58,348 KB
testcase_20 AC 99 ms
53,060 KB
testcase_21 AC 93 ms
53,064 KB
testcase_22 AC 103 ms
54,008 KB
testcase_23 AC 102 ms
53,840 KB
testcase_24 AC 134 ms
54,192 KB
testcase_25 AC 146 ms
54,240 KB
testcase_26 AC 104 ms
54,160 KB
testcase_27 AC 95 ms
53,056 KB
testcase_28 AC 103 ms
53,904 KB
testcase_29 AC 181 ms
57,212 KB
testcase_30 AC 167 ms
56,300 KB
testcase_31 AC 136 ms
53,828 KB
testcase_32 AC 133 ms
54,096 KB
testcase_33 AC 95 ms
53,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no005;

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

public class Main {

	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 ans = 0;
		int sum = 0;
		for(int i=0;i<n;i++) {
			sum += w[i];
			if (sum > l) {
				System.out.println(i);
				return;
			}
		}
		System.out.println(n);
	}

}
0