結果

問題 No.5 数字のブロック
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-19 14:23:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 4,343 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 59,156 KB
最終ジャッジ日時 2024-11-18 08:39:26
合計ジャッジ時間 11,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,948 KB
testcase_01 AC 135 ms
54,020 KB
testcase_02 AC 133 ms
54,140 KB
testcase_03 AC 246 ms
58,248 KB
testcase_04 AC 221 ms
57,192 KB
testcase_05 AC 254 ms
58,232 KB
testcase_06 AC 232 ms
57,756 KB
testcase_07 AC 223 ms
57,556 KB
testcase_08 AC 238 ms
58,324 KB
testcase_09 AC 203 ms
56,200 KB
testcase_10 AC 257 ms
58,856 KB
testcase_11 AC 216 ms
58,072 KB
testcase_12 AC 250 ms
58,560 KB
testcase_13 AC 257 ms
59,072 KB
testcase_14 AC 148 ms
54,164 KB
testcase_15 AC 154 ms
54,284 KB
testcase_16 AC 258 ms
58,840 KB
testcase_17 AC 272 ms
59,152 KB
testcase_18 AC 276 ms
58,824 KB
testcase_19 AC 277 ms
59,156 KB
testcase_20 AC 134 ms
54,360 KB
testcase_21 AC 132 ms
54,160 KB
testcase_22 AC 133 ms
54,212 KB
testcase_23 AC 133 ms
53,984 KB
testcase_24 AC 164 ms
54,240 KB
testcase_25 AC 180 ms
54,412 KB
testcase_26 AC 131 ms
54,180 KB
testcase_27 AC 131 ms
54,224 KB
testcase_28 AC 134 ms
54,228 KB
testcase_29 AC 221 ms
57,504 KB
testcase_30 AC 205 ms
56,464 KB
testcase_31 AC 133 ms
54,164 KB
testcase_32 AC 130 ms
54,176 KB
testcase_33 AC 131 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class No5v2 {
	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];
		int tmp = 0;
		int c = 0;
		for (int i = 0; i < w.length; i++) {
			w[i] = sc.nextInt();
		}
		sc.close();
		
		Arrays.sort(w);//ソート
		
		for (int i = 0; i < w.length; i++) {
			if (L - tmp >= w[i]) {
				tmp += w[i];
				c++;
			} else {
				break;
			}
		}
		System.out.println(c);
	}
}
0