結果

問題 No.5 数字のブロック
ユーザー doyazaki012doyazaki012
提出日時 2015-04-24 17:47:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 58,976 KB
最終ジャッジ日時 2024-11-17 22:39:59
合計ジャッジ時間 9,026 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,008 KB
testcase_01 AC 110 ms
53,052 KB
testcase_02 AC 121 ms
54,144 KB
testcase_03 AC 227 ms
57,984 KB
testcase_04 AC 215 ms
57,160 KB
testcase_05 AC 245 ms
58,856 KB
testcase_06 AC 214 ms
57,812 KB
testcase_07 AC 214 ms
57,340 KB
testcase_08 AC 226 ms
58,224 KB
testcase_09 AC 191 ms
56,920 KB
testcase_10 AC 244 ms
57,896 KB
testcase_11 AC 216 ms
57,744 KB
testcase_12 AC 228 ms
57,872 KB
testcase_13 AC 246 ms
58,932 KB
testcase_14 AC 135 ms
54,304 KB
testcase_15 AC 144 ms
53,876 KB
testcase_16 AC 248 ms
58,708 KB
testcase_17 AC 251 ms
58,976 KB
testcase_18 AC 248 ms
58,640 KB
testcase_19 AC 253 ms
58,788 KB
testcase_20 AC 122 ms
53,940 KB
testcase_21 AC 125 ms
53,816 KB
testcase_22 AC 124 ms
53,776 KB
testcase_23 AC 126 ms
53,732 KB
testcase_24 AC 159 ms
54,080 KB
testcase_25 AC 171 ms
54,020 KB
testcase_26 AC 126 ms
53,864 KB
testcase_27 AC 125 ms
53,676 KB
testcase_28 AC 127 ms
53,876 KB
testcase_29 AC 215 ms
57,164 KB
testcase_30 AC 188 ms
56,552 KB
testcase_31 AC 123 ms
53,988 KB
testcase_32 AC 108 ms
52,792 KB
testcase_33 AC 117 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki5{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);

	
		int l = stdIn.nextInt();
		int n = stdIn.nextInt();
		int[] w = new int[n]; 
		for(int i=0;i<n;i++){
			w[i] = stdIn.nextInt();
		}
		Arrays.sort(w);
		int k=0;
		int sum = 0;
		while(sum<=l){
			sum+=w[k];
			k++;
			if(k==n&&sum<=l){
				k++;
				break;
			}else if(k==n)
				break;
		}
		System.out.println(k-1);
	}
}
0