結果

問題 No.5 数字のブロック
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-11 22:29:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 3,374 ms
コンパイル使用メモリ 76,088 KB
実行使用メモリ 47,900 KB
最終ジャッジ日時 2024-06-28 04:32:04
合計ジャッジ時間 10,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,276 KB
testcase_01 AC 115 ms
40,052 KB
testcase_02 WA -
testcase_03 AC 241 ms
46,804 KB
testcase_04 AC 220 ms
45,816 KB
testcase_05 AC 254 ms
47,424 KB
testcase_06 AC 230 ms
46,440 KB
testcase_07 AC 222 ms
45,564 KB
testcase_08 AC 243 ms
46,548 KB
testcase_09 AC 197 ms
43,872 KB
testcase_10 AC 254 ms
46,876 KB
testcase_11 AC 224 ms
45,960 KB
testcase_12 AC 247 ms
46,916 KB
testcase_13 AC 255 ms
47,060 KB
testcase_14 AC 143 ms
41,560 KB
testcase_15 AC 150 ms
41,816 KB
testcase_16 AC 258 ms
47,188 KB
testcase_17 AC 267 ms
47,472 KB
testcase_18 AC 272 ms
47,900 KB
testcase_19 AC 266 ms
47,764 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 127 ms
41,260 KB
testcase_24 AC 152 ms
41,732 KB
testcase_25 AC 177 ms
42,152 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 235 ms
45,660 KB
testcase_30 AC 200 ms
43,944 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.Arrays;

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

        int L = sc.nextInt();
        int N = sc.nextInt();

        int[] W = new int[N];
        for(int i = 0; i < N; i++){
            W[i] = sc.nextInt();
        }
        Arrays.sort(W);
        int blocks_width = 0;
        for(int i = 0; i < N; i++){
            if(blocks_width + W[i] > L){
                System.out.println(i);
                break;
            }else{
                blocks_width += W[i];
            }
        }
    }
}
0