結果

問題 No.5 数字のブロック
ユーザー HaleakalaHaleakala
提出日時 2018-02-18 22:47:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 75,616 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2024-07-04 19:15:45
合計ジャッジ時間 9,754 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,236 KB
testcase_01 AC 120 ms
41,716 KB
testcase_02 WA -
testcase_03 AC 192 ms
44,816 KB
testcase_04 AC 185 ms
43,708 KB
testcase_05 AC 212 ms
46,516 KB
testcase_06 AC 191 ms
44,680 KB
testcase_07 AC 186 ms
43,756 KB
testcase_08 AC 185 ms
44,684 KB
testcase_09 AC 168 ms
43,096 KB
testcase_10 AC 207 ms
46,336 KB
testcase_11 AC 179 ms
44,180 KB
testcase_12 AC 187 ms
45,116 KB
testcase_13 AC 196 ms
45,628 KB
testcase_14 AC 127 ms
41,448 KB
testcase_15 AC 131 ms
41,772 KB
testcase_16 AC 202 ms
46,228 KB
testcase_17 AC 213 ms
46,904 KB
testcase_18 AC 209 ms
46,524 KB
testcase_19 AC 214 ms
47,060 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 122 ms
41,472 KB
testcase_24 AC 140 ms
41,644 KB
testcase_25 AC 151 ms
41,852 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 180 ms
43,640 KB
testcase_30 AC 170 ms
42,972 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        		break;
        	}
        	width -= blocks[i];
        }
	}
}
0