結果

問題 No.5 数字のブロック
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-19 14:33:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 3,730 ms
コンパイル使用メモリ 75,476 KB
実行使用メモリ 47,896 KB
最終ジャッジ日時 2024-11-18 08:37:33
合計ジャッジ時間 10,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,460 KB
testcase_01 AC 111 ms
41,420 KB
testcase_02 AC 132 ms
41,356 KB
testcase_03 AC 228 ms
46,488 KB
testcase_04 AC 231 ms
45,868 KB
testcase_05 AC 229 ms
46,488 KB
testcase_06 AC 211 ms
46,560 KB
testcase_07 AC 203 ms
45,588 KB
testcase_08 AC 224 ms
46,432 KB
testcase_09 AC 187 ms
43,636 KB
testcase_10 AC 245 ms
47,736 KB
testcase_11 AC 215 ms
46,440 KB
testcase_12 AC 233 ms
46,480 KB
testcase_13 AC 231 ms
46,616 KB
testcase_14 AC 135 ms
41,576 KB
testcase_15 AC 143 ms
41,884 KB
testcase_16 AC 230 ms
47,036 KB
testcase_17 AC 241 ms
47,068 KB
testcase_18 AC 242 ms
47,504 KB
testcase_19 AC 242 ms
47,896 KB
testcase_20 AC 120 ms
41,348 KB
testcase_21 AC 108 ms
41,660 KB
testcase_22 AC 112 ms
41,548 KB
testcase_23 AC 120 ms
41,588 KB
testcase_24 AC 142 ms
42,012 KB
testcase_25 AC 170 ms
42,072 KB
testcase_26 AC 122 ms
41,496 KB
testcase_27 AC 121 ms
41,620 KB
testcase_28 AC 117 ms
41,412 KB
testcase_29 AC 203 ms
45,516 KB
testcase_30 AC 182 ms
44,316 KB
testcase_31 AC 109 ms
41,528 KB
testcase_32 AC 123 ms
41,356 KB
testcase_33 AC 121 ms
41,264 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 n : w) {
			if (L - tmp >= n) {
				tmp += n;
				c++;
			} else {
				break;
			}
		}
		System.out.println(c);
	}
}
0