結果

問題 No.5 数字のブロック
ユーザー skkbevskkbev
提出日時 2018-12-03 22:48:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 764 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 59,164 KB
最終ジャッジ日時 2024-11-18 12:44:10
合計ジャッジ時間 10,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,948 KB
testcase_01 AC 137 ms
54,004 KB
testcase_02 AC 135 ms
54,132 KB
testcase_03 AC 255 ms
57,852 KB
testcase_04 AC 234 ms
57,632 KB
testcase_05 AC 276 ms
58,332 KB
testcase_06 AC 250 ms
58,144 KB
testcase_07 AC 237 ms
57,676 KB
testcase_08 AC 247 ms
58,404 KB
testcase_09 AC 210 ms
56,756 KB
testcase_10 AC 279 ms
59,164 KB
testcase_11 AC 237 ms
57,440 KB
testcase_12 AC 256 ms
58,256 KB
testcase_13 AC 270 ms
58,236 KB
testcase_14 AC 151 ms
54,436 KB
testcase_15 AC 163 ms
54,156 KB
testcase_16 AC 270 ms
58,292 KB
testcase_17 AC 290 ms
58,780 KB
testcase_18 AC 282 ms
58,980 KB
testcase_19 AC 293 ms
58,952 KB
testcase_20 AC 135 ms
54,012 KB
testcase_21 AC 131 ms
54,168 KB
testcase_22 AC 133 ms
53,984 KB
testcase_23 AC 132 ms
54,136 KB
testcase_24 AC 174 ms
54,224 KB
testcase_25 AC 187 ms
54,460 KB
testcase_26 AC 135 ms
53,860 KB
testcase_27 AC 140 ms
53,948 KB
testcase_28 AC 134 ms
54,076 KB
testcase_29 AC 227 ms
57,424 KB
testcase_30 AC 210 ms
56,752 KB
testcase_31 AC 135 ms
54,108 KB
testcase_32 AC 136 ms
54,164 KB
testcase_33 AC 139 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int l = sc.nextInt();
        int n = sc.nextInt();
        
        List<Integer> list = new ArrayList<>();
        
        for (int i = 0; i < n; i++) {
            list.add(sc.nextInt());
        }

        Collections.sort(list);
        
        int sum = 0;
        int w = 0;
        for (int i = 0; i < n; i++) {
            sum += list.get(i);
                if (sum <= l) {
                    w++;
                } else {
                    break;
                }
        }
        System.out.println(w);
    }
}
0