結果

問題 No.5 数字のブロック
ユーザー bigbear90560bigbear90560
提出日時 2015-07-02 21:00:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 3,495 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 48,452 KB
最終ジャッジ日時 2024-07-07 22:22:02
合計ジャッジ時間 9,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,352 KB
testcase_01 AC 104 ms
40,044 KB
testcase_02 WA -
testcase_03 AC 193 ms
46,420 KB
testcase_04 AC 183 ms
45,660 KB
testcase_05 WA -
testcase_06 AC 188 ms
46,352 KB
testcase_07 AC 189 ms
46,060 KB
testcase_08 AC 198 ms
46,828 KB
testcase_09 AC 167 ms
43,476 KB
testcase_10 AC 210 ms
46,636 KB
testcase_11 AC 187 ms
45,424 KB
testcase_12 AC 198 ms
46,796 KB
testcase_13 AC 207 ms
45,968 KB
testcase_14 AC 120 ms
41,308 KB
testcase_15 WA -
testcase_16 AC 215 ms
47,056 KB
testcase_17 AC 223 ms
48,452 KB
testcase_18 AC 220 ms
47,732 KB
testcase_19 AC 227 ms
47,644 KB
testcase_20 AC 93 ms
40,212 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 104 ms
41,180 KB
testcase_24 AC 132 ms
44,272 KB
testcase_25 AC 146 ms
41,796 KB
testcase_26 AC 103 ms
40,872 KB
testcase_27 AC 101 ms
41,220 KB
testcase_28 AC 101 ms
41,100 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 101 ms
41,184 KB
testcase_32 AC 101 ms
41,032 KB
testcase_33 AC 92 ms
40,088 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