結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,588 KB
testcase_01 AC 110 ms
53,004 KB
testcase_02 AC 125 ms
53,804 KB
testcase_03 AC 236 ms
58,440 KB
testcase_04 AC 224 ms
57,532 KB
testcase_05 AC 255 ms
58,980 KB
testcase_06 AC 213 ms
57,600 KB
testcase_07 AC 207 ms
57,436 KB
testcase_08 AC 231 ms
58,328 KB
testcase_09 AC 195 ms
56,720 KB
testcase_10 AC 246 ms
58,748 KB
testcase_11 AC 214 ms
57,432 KB
testcase_12 AC 227 ms
58,556 KB
testcase_13 AC 241 ms
58,440 KB
testcase_14 AC 134 ms
54,180 KB
testcase_15 AC 141 ms
54,288 KB
testcase_16 AC 244 ms
59,016 KB
testcase_17 AC 239 ms
58,740 KB
testcase_18 AC 248 ms
58,632 KB
testcase_19 AC 246 ms
59,028 KB
testcase_20 AC 131 ms
54,144 KB
testcase_21 AC 125 ms
54,148 KB
testcase_22 AC 126 ms
54,120 KB
testcase_23 AC 111 ms
52,972 KB
testcase_24 AC 158 ms
54,320 KB
testcase_25 AC 166 ms
54,200 KB
testcase_26 AC 122 ms
54,076 KB
testcase_27 AC 131 ms
54,136 KB
testcase_28 AC 124 ms
54,020 KB
testcase_29 AC 216 ms
57,436 KB
testcase_30 AC 208 ms
56,580 KB
testcase_31 AC 126 ms
54,192 KB
testcase_32 AC 126 ms
54,184 KB
testcase_33 AC 115 ms
53,204 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 index=0;
    	int counter=0;
    	
    	boolean reachedlastindex=false;

    	while(true) {

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

    			L-=w[index];
    			counter++;
    			
    			if(index==N-1) {
    				reachedlastindex=true;
    			}else{
    			    index++;
    			}

    		}else {
    			break;
    		}

    	}

    	System.out.println(counter);

    	sc.close();

    }




}
0