結果

問題 No.5 数字のブロック
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 22:55:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 3,486 ms
コンパイル使用メモリ 75,500 KB
実行使用メモリ 47,040 KB
最終ジャッジ日時 2024-04-29 09:38:14
合計ジャッジ時間 10,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,276 KB
testcase_01 AC 132 ms
41,280 KB
testcase_02 AC 112 ms
40,004 KB
testcase_03 AC 204 ms
44,212 KB
testcase_04 AC 193 ms
43,744 KB
testcase_05 AC 222 ms
45,344 KB
testcase_06 AC 201 ms
43,888 KB
testcase_07 AC 203 ms
43,340 KB
testcase_08 AC 210 ms
44,252 KB
testcase_09 AC 187 ms
42,732 KB
testcase_10 AC 225 ms
46,528 KB
testcase_11 AC 195 ms
43,896 KB
testcase_12 AC 213 ms
44,932 KB
testcase_13 AC 219 ms
45,868 KB
testcase_14 AC 133 ms
41,356 KB
testcase_15 AC 138 ms
41,548 KB
testcase_16 AC 219 ms
45,776 KB
testcase_17 AC 223 ms
47,040 KB
testcase_18 AC 221 ms
46,480 KB
testcase_19 AC 226 ms
46,444 KB
testcase_20 AC 130 ms
41,304 KB
testcase_21 AC 127 ms
41,424 KB
testcase_22 AC 124 ms
41,184 KB
testcase_23 AC 128 ms
41,324 KB
testcase_24 AC 145 ms
41,536 KB
testcase_25 AC 166 ms
41,936 KB
testcase_26 AC 131 ms
41,356 KB
testcase_27 AC 129 ms
41,528 KB
testcase_28 AC 125 ms
41,372 KB
testcase_29 AC 195 ms
43,812 KB
testcase_30 AC 184 ms
42,684 KB
testcase_31 AC 125 ms
41,144 KB
testcase_32 AC 125 ms
41,196 KB
testcase_33 AC 128 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Answer {
	public static void main(String str[]) {
        Scanner sc = new Scanner(System.in);

        int width = Integer.valueOf(sc.nextLine());
        int blockNum = Integer.valueOf(sc.nextLine());

        int blocks[] = new int[blockNum];
        for(int i=0; i<blockNum; i++) {
        	blocks[i] = Integer.valueOf(sc.next());
        }

        Arrays.sort(blocks);

        for(int i=0; i<blockNum; i++) {
        	if(width < blocks[i]) {
        		System.out.println(i);
        		return;
        	}
        	width -= blocks[i];
        }
        System.out.println(blockNum);
	}
}
0