結果

問題 No.5 数字のブロック
ユーザー Flere0114Flere0114
提出日時 2016-02-24 13:07:05
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 59,132 KB
最終ジャッジ日時 2024-09-22 13:18:11
合計ジャッジ時間 10,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,468 KB
testcase_01 AC 129 ms
54,364 KB
testcase_02 WA -
testcase_03 AC 238 ms
58,340 KB
testcase_04 AC 219 ms
57,136 KB
testcase_05 AC 251 ms
58,908 KB
testcase_06 AC 227 ms
58,012 KB
testcase_07 AC 226 ms
57,348 KB
testcase_08 AC 240 ms
58,512 KB
testcase_09 AC 200 ms
56,656 KB
testcase_10 AC 246 ms
58,624 KB
testcase_11 AC 222 ms
58,248 KB
testcase_12 AC 243 ms
58,732 KB
testcase_13 AC 245 ms
58,716 KB
testcase_14 AC 141 ms
54,132 KB
testcase_15 AC 152 ms
54,004 KB
testcase_16 AC 256 ms
59,132 KB
testcase_17 AC 265 ms
58,776 KB
testcase_18 AC 261 ms
58,788 KB
testcase_19 AC 270 ms
58,784 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 130 ms
54,280 KB
testcase_24 AC 162 ms
54,384 KB
testcase_25 AC 180 ms
54,444 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 220 ms
57,360 KB
testcase_30 AC 204 ms
56,600 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No5 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int l, n, sum = 0, ans = 0;
        l = sc.nextInt();
        n = sc.nextInt();
        int[] w = new int[n];
        for (int i = 0; i < n; i++) {
            w[i] = sc.nextInt();
        }
        Arrays.sort(w);

        for (int i = 0; i < n; i++) {
            sum += w[i];
            if(sum > l){
                System.out.println(i);
                return;
            }
        }
    }
}
0