結果

問題 No.5 数字のブロック
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-20 11:23:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 561 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 47,840 KB
最終ジャッジ日時 2024-06-28 14:35:12
合計ジャッジ時間 9,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,336 KB
testcase_01 AC 130 ms
41,392 KB
testcase_02 RE -
testcase_03 AC 246 ms
46,624 KB
testcase_04 AC 223 ms
45,656 KB
testcase_05 AC 248 ms
46,724 KB
testcase_06 AC 228 ms
46,240 KB
testcase_07 AC 221 ms
45,584 KB
testcase_08 AC 236 ms
46,896 KB
testcase_09 AC 202 ms
43,708 KB
testcase_10 AC 254 ms
46,904 KB
testcase_11 AC 224 ms
46,048 KB
testcase_12 AC 244 ms
46,268 KB
testcase_13 AC 251 ms
47,148 KB
testcase_14 AC 141 ms
41,868 KB
testcase_15 AC 150 ms
41,780 KB
testcase_16 AC 255 ms
46,792 KB
testcase_17 AC 266 ms
47,840 KB
testcase_18 AC 262 ms
46,856 KB
testcase_19 AC 269 ms
47,596 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 128 ms
41,172 KB
testcase_24 AC 157 ms
41,720 KB
testcase_25 AC 188 ms
41,976 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 231 ms
45,716 KB
testcase_30 AC 206 ms
44,032 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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];

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

    		w[i]=sc.nextInt();

    	}

    	Arrays.sort(w);

    	int index=0;
    	int counter=0;

    	while(true) {

    		if(L-w[index]>=0) {

    			L-=w[index++];
    			counter++;

    		}else {
    			break;
    		}

    	}

    	System.out.println(counter);

    	sc.close();

    }




}
0