結果

問題 No.5 数字のブロック
ユーザー skkbevskkbev
提出日時 2018-12-03 21:47:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 85,460 KB
実行使用メモリ 47,684 KB
最終ジャッジ日時 2024-07-04 19:03:23
合計ジャッジ時間 9,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,420 KB
testcase_01 AC 124 ms
41,352 KB
testcase_02 WA -
testcase_03 AC 245 ms
46,480 KB
testcase_04 AC 227 ms
45,896 KB
testcase_05 WA -
testcase_06 AC 234 ms
45,896 KB
testcase_07 AC 218 ms
45,520 KB
testcase_08 AC 239 ms
46,012 KB
testcase_09 AC 196 ms
43,532 KB
testcase_10 AC 261 ms
47,244 KB
testcase_11 AC 233 ms
45,552 KB
testcase_12 AC 249 ms
46,300 KB
testcase_13 AC 254 ms
46,344 KB
testcase_14 AC 137 ms
41,572 KB
testcase_15 WA -
testcase_16 AC 268 ms
47,444 KB
testcase_17 AC 279 ms
47,500 KB
testcase_18 AC 272 ms
46,840 KB
testcase_19 AC 272 ms
47,684 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 119 ms
41,336 KB
testcase_24 AC 163 ms
42,012 KB
testcase_25 AC 166 ms
41,888 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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 i3 = 0;
        for (int w = 0; w < n; w++) {
            i3 += list.get(w);
                if (i3 >= l) {
                    System.out.println(w);
                    break;
                }
        }
    }
}
0