結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,172 KB
testcase_01 AC 137 ms
41,324 KB
testcase_02 WA -
testcase_03 AC 239 ms
46,408 KB
testcase_04 AC 226 ms
45,880 KB
testcase_05 WA -
testcase_06 AC 235 ms
46,224 KB
testcase_07 AC 222 ms
45,892 KB
testcase_08 AC 239 ms
46,860 KB
testcase_09 AC 204 ms
43,916 KB
testcase_10 AC 259 ms
46,856 KB
testcase_11 AC 225 ms
46,260 KB
testcase_12 AC 244 ms
46,416 KB
testcase_13 AC 258 ms
46,900 KB
testcase_14 AC 139 ms
41,500 KB
testcase_15 WA -
testcase_16 AC 255 ms
47,024 KB
testcase_17 AC 274 ms
47,676 KB
testcase_18 AC 265 ms
47,032 KB
testcase_19 AC 270 ms
47,720 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 133 ms
41,148 KB
testcase_24 AC 152 ms
41,556 KB
testcase_25 AC 177 ms
42,020 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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;

    	while(true) {

    		L-=w[index];

    		if(L<=0) {
    			break;
    		}else {
    			index++;
    		}
    	}

    	System.out.println(index);

    	sc.close();

    }




}
0