結果

問題 No.5 数字のブロック
ユーザー bigbear90560bigbear90560
提出日時 2015-07-03 00:42:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 59,000 KB
最終ジャッジ日時 2024-07-07 22:33:36
合計ジャッジ時間 9,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,140 KB
testcase_01 AC 110 ms
53,788 KB
testcase_02 WA -
testcase_03 AC 208 ms
58,260 KB
testcase_04 AC 195 ms
57,240 KB
testcase_05 WA -
testcase_06 AC 201 ms
57,520 KB
testcase_07 AC 192 ms
57,744 KB
testcase_08 AC 201 ms
57,900 KB
testcase_09 AC 173 ms
56,888 KB
testcase_10 AC 223 ms
58,176 KB
testcase_11 AC 197 ms
57,536 KB
testcase_12 AC 213 ms
58,640 KB
testcase_13 AC 211 ms
58,632 KB
testcase_14 AC 121 ms
54,208 KB
testcase_15 WA -
testcase_16 AC 220 ms
58,600 KB
testcase_17 AC 223 ms
58,744 KB
testcase_18 AC 236 ms
58,424 KB
testcase_19 AC 240 ms
59,000 KB
testcase_20 AC 123 ms
54,216 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 115 ms
54,124 KB
testcase_24 AC 138 ms
54,220 KB
testcase_25 AC 151 ms
54,400 KB
testcase_26 AC 116 ms
54,124 KB
testcase_27 AC 112 ms
54,104 KB
testcase_28 AC 112 ms
53,988 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 115 ms
53,792 KB
testcase_32 AC 114 ms
54,304 KB
testcase_33 AC 111 ms
53,888 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) {
        		break;
        	} else {
        		resCount++;	
        	}
        }
        System.out.println(resCount);
	}

}

0