結果

問題 No.5 数字のブロック
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-20 11:25:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 577 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 47,704 KB
最終ジャッジ日時 2024-06-28 14:35:26
合計ジャッジ時間 10,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,388 KB
testcase_01 AC 136 ms
41,324 KB
testcase_02 WA -
testcase_03 AC 246 ms
46,008 KB
testcase_04 AC 223 ms
45,456 KB
testcase_05 AC 258 ms
47,184 KB
testcase_06 AC 236 ms
46,032 KB
testcase_07 AC 225 ms
45,364 KB
testcase_08 AC 244 ms
46,500 KB
testcase_09 AC 202 ms
43,680 KB
testcase_10 AC 262 ms
47,568 KB
testcase_11 AC 230 ms
45,744 KB
testcase_12 AC 249 ms
46,608 KB
testcase_13 AC 260 ms
46,480 KB
testcase_14 AC 145 ms
41,396 KB
testcase_15 AC 155 ms
41,652 KB
testcase_16 AC 267 ms
46,472 KB
testcase_17 AC 272 ms
47,408 KB
testcase_18 AC 271 ms
47,704 KB
testcase_19 AC 279 ms
47,368 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
40,108 KB
testcase_24 AC 159 ms
41,584 KB
testcase_25 AC 184 ms
41,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 229 ms
45,716 KB
testcase_30 AC 206 ms
43,788 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];

    	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 && index+1<=N-1) {

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

    		}else {
    			break;
    		}

    	}

    	System.out.println(counter);

    	sc.close();

    }




}
0