結果

問題 No.5 数字のブロック
ユーザー prestopresto
提出日時 2015-10-08 22:52:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 47,964 KB
最終ジャッジ日時 2024-07-20 02:16:19
合計ジャッジ時間 9,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,532 KB
testcase_01 AC 134 ms
41,388 KB
testcase_02 WA -
testcase_03 AC 252 ms
46,696 KB
testcase_04 AC 232 ms
45,796 KB
testcase_05 AC 263 ms
46,660 KB
testcase_06 AC 236 ms
46,440 KB
testcase_07 AC 231 ms
45,812 KB
testcase_08 AC 245 ms
46,856 KB
testcase_09 AC 202 ms
43,912 KB
testcase_10 AC 255 ms
47,568 KB
testcase_11 AC 228 ms
46,332 KB
testcase_12 AC 247 ms
46,392 KB
testcase_13 AC 266 ms
47,328 KB
testcase_14 AC 148 ms
41,812 KB
testcase_15 AC 159 ms
41,764 KB
testcase_16 AC 263 ms
47,316 KB
testcase_17 AC 278 ms
47,464 KB
testcase_18 AC 272 ms
47,488 KB
testcase_19 AC 275 ms
47,964 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 132 ms
41,408 KB
testcase_24 AC 166 ms
41,504 KB
testcase_25 AC 184 ms
41,868 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 226 ms
45,652 KB
testcase_30 AC 207 ms
43,572 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
    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];
        int sum = 0;
        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