結果

問題 No.5 数字のブロック
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-20 11:37:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 59,032 KB
最終ジャッジ日時 2024-11-18 12:26:39
合計ジャッジ時間 10,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,252 KB
testcase_01 AC 125 ms
54,304 KB
testcase_02 AC 126 ms
54,044 KB
testcase_03 AC 226 ms
57,756 KB
testcase_04 AC 207 ms
57,356 KB
testcase_05 AC 235 ms
58,728 KB
testcase_06 AC 229 ms
58,060 KB
testcase_07 AC 209 ms
57,288 KB
testcase_08 AC 236 ms
58,156 KB
testcase_09 AC 189 ms
56,684 KB
testcase_10 AC 251 ms
58,408 KB
testcase_11 AC 201 ms
57,712 KB
testcase_12 AC 230 ms
58,196 KB
testcase_13 AC 240 ms
58,896 KB
testcase_14 AC 137 ms
54,296 KB
testcase_15 AC 154 ms
53,948 KB
testcase_16 AC 250 ms
59,032 KB
testcase_17 AC 260 ms
58,908 KB
testcase_18 AC 248 ms
58,620 KB
testcase_19 AC 265 ms
58,880 KB
testcase_20 AC 119 ms
53,960 KB
testcase_21 AC 113 ms
53,064 KB
testcase_22 AC 110 ms
52,940 KB
testcase_23 AC 134 ms
54,116 KB
testcase_24 AC 160 ms
54,328 KB
testcase_25 AC 174 ms
54,304 KB
testcase_26 AC 130 ms
53,940 KB
testcase_27 AC 121 ms
53,904 KB
testcase_28 AC 129 ms
54,192 KB
testcase_29 AC 207 ms
57,444 KB
testcase_30 AC 191 ms
56,716 KB
testcase_31 AC 124 ms
54,080 KB
testcase_32 AC 122 ms
54,048 KB
testcase_33 AC 124 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main2 {


    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 counter=0;


    	for(int i=0;i<N;i++) {

    		L-=w[i];

    		if(L>=0) {
    			counter++;
    		}else {
    			break;
    		}

    	}

    	System.out.println(counter);

    	sc.close();

    }




}
0