結果

問題 No.5 数字のブロック
ユーザー bigbear90560bigbear90560
提出日時 2015-07-03 22:09:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 789 bytes
コンパイル時間 3,849 ms
コンパイル使用メモリ 75,932 KB
実行使用メモリ 48,152 KB
最終ジャッジ日時 2024-11-17 22:58:24
合計ジャッジ時間 10,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,344 KB
testcase_01 AC 123 ms
41,388 KB
testcase_02 AC 126 ms
41,388 KB
testcase_03 AC 233 ms
45,908 KB
testcase_04 AC 199 ms
45,848 KB
testcase_05 AC 236 ms
47,348 KB
testcase_06 AC 219 ms
46,388 KB
testcase_07 AC 207 ms
45,536 KB
testcase_08 AC 219 ms
46,620 KB
testcase_09 AC 193 ms
43,080 KB
testcase_10 AC 245 ms
47,488 KB
testcase_11 AC 214 ms
45,836 KB
testcase_12 AC 224 ms
46,516 KB
testcase_13 AC 237 ms
47,404 KB
testcase_14 AC 130 ms
41,804 KB
testcase_15 AC 155 ms
42,124 KB
testcase_16 AC 225 ms
46,528 KB
testcase_17 AC 249 ms
47,656 KB
testcase_18 AC 240 ms
47,612 KB
testcase_19 AC 249 ms
48,152 KB
testcase_20 AC 119 ms
41,052 KB
testcase_21 AC 121 ms
41,460 KB
testcase_22 AC 121 ms
40,976 KB
testcase_23 AC 124 ms
41,616 KB
testcase_24 AC 147 ms
41,496 KB
testcase_25 AC 162 ms
41,848 KB
testcase_26 AC 119 ms
41,052 KB
testcase_27 AC 119 ms
41,296 KB
testcase_28 AC 118 ms
41,380 KB
testcase_29 AC 202 ms
45,644 KB
testcase_30 AC 183 ms
43,988 KB
testcase_31 AC 117 ms
41,280 KB
testcase_32 AC 112 ms
41,044 KB
testcase_33 AC 114 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

/**
 * No.5 数字のブロック
 */
public class NumberBlock {

	public static void main(String[] args) {

		// 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();	// 幅
        int b = sc.nextInt();	// ブロック数
    	int[] c = new int[b];

        for (int i=0;i<b;i++) {
        	c[i] = sc.nextInt();	// ブロック幅
        }
        
        // 配列をソート
        Arrays.sort(c);
        
        int resWidth = 0;
        int resCount = 0;
        for (int n : c) {
        	resWidth += n;
			if (a >= resWidth) {
				resCount++;
			} else {
				break;
			}
        }
        System.out.println(resCount);
	}

}
0