結果

問題 No.5 数字のブロック
ユーザー takutakutakutaku
提出日時 2020-09-16 11:56:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 737 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 58,672 KB
最終ジャッジ日時 2024-06-22 03:08:17
合計ジャッジ時間 9,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,844 KB
testcase_01 AC 136 ms
54,016 KB
testcase_02 AC 137 ms
54,440 KB
testcase_03 AC 209 ms
57,452 KB
testcase_04 AC 205 ms
56,872 KB
testcase_05 AC 233 ms
57,544 KB
testcase_06 AC 208 ms
57,264 KB
testcase_07 AC 203 ms
56,640 KB
testcase_08 AC 202 ms
57,024 KB
testcase_09 AC 191 ms
54,668 KB
testcase_10 AC 231 ms
58,164 KB
testcase_11 AC 209 ms
57,612 KB
testcase_12 AC 221 ms
56,836 KB
testcase_13 AC 227 ms
57,532 KB
testcase_14 AC 146 ms
54,176 KB
testcase_15 AC 153 ms
54,380 KB
testcase_16 AC 234 ms
58,192 KB
testcase_17 AC 240 ms
58,192 KB
testcase_18 AC 241 ms
58,672 KB
testcase_19 AC 243 ms
58,252 KB
testcase_20 AC 137 ms
53,836 KB
testcase_21 AC 140 ms
54,404 KB
testcase_22 AC 138 ms
54,128 KB
testcase_23 AC 140 ms
54,760 KB
testcase_24 AC 157 ms
54,420 KB
testcase_25 AC 167 ms
54,268 KB
testcase_26 AC 135 ms
54,096 KB
testcase_27 AC 141 ms
54,316 KB
testcase_28 AC 142 ms
54,304 KB
testcase_29 AC 200 ms
56,844 KB
testcase_30 AC 200 ms
54,872 KB
testcase_31 AC 142 ms
54,240 KB
testcase_32 AC 142 ms
54,412 KB
testcase_33 AC 137 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 入力値を取得
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int n = sc.nextInt();
		
		// ブロックは配列に格納する
		int[] numbers = new int[n];
		for(int i = 0; i < n; i++) {
		    numbers[i] = Integer.parseInt(sc.next());
		}
		sc.close();
		
		// 配列の要素をソートする
		Arrays.sort(numbers);
		int value = 0;
		int count = 0;
		
		// ブロックを小さい順に足し算し、箱に入るブロック数を探索する
		for(int i = 0; i < n; i++) {
		    value += numbers[i];
		    if(value <= l) {
		        count++;
		    }
		}
		
		// 出力
		System.out.println(count);
	    
	}
}
0