結果

問題 No.5 数字のブロック
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 22:55:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 212 ms / 5,000 ms
コード長 657 bytes
コンパイル時間 3,813 ms
コンパイル使用メモリ 75,528 KB
実行使用メモリ 47,020 KB
最終ジャッジ日時 2024-11-18 12:06:43
合計ジャッジ時間 9,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,384 KB
testcase_01 AC 117 ms
41,476 KB
testcase_02 AC 117 ms
41,344 KB
testcase_03 AC 186 ms
45,524 KB
testcase_04 AC 170 ms
43,828 KB
testcase_05 AC 199 ms
45,696 KB
testcase_06 AC 183 ms
44,104 KB
testcase_07 AC 179 ms
43,328 KB
testcase_08 AC 192 ms
44,188 KB
testcase_09 AC 165 ms
42,688 KB
testcase_10 AC 202 ms
45,936 KB
testcase_11 AC 187 ms
43,868 KB
testcase_12 AC 206 ms
45,008 KB
testcase_13 AC 207 ms
45,296 KB
testcase_14 AC 130 ms
41,448 KB
testcase_15 AC 119 ms
41,628 KB
testcase_16 AC 200 ms
45,976 KB
testcase_17 AC 210 ms
46,704 KB
testcase_18 AC 212 ms
46,732 KB
testcase_19 AC 206 ms
47,020 KB
testcase_20 AC 115 ms
41,560 KB
testcase_21 AC 114 ms
41,376 KB
testcase_22 AC 115 ms
41,140 KB
testcase_23 AC 116 ms
41,528 KB
testcase_24 AC 134 ms
41,844 KB
testcase_25 AC 137 ms
41,856 KB
testcase_26 AC 115 ms
41,472 KB
testcase_27 AC 116 ms
41,536 KB
testcase_28 AC 117 ms
41,376 KB
testcase_29 AC 175 ms
43,668 KB
testcase_30 AC 156 ms
42,440 KB
testcase_31 AC 106 ms
41,512 KB
testcase_32 AC 105 ms
41,224 KB
testcase_33 AC 105 ms
41,220 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