結果

問題 No.5 数字のブロック
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-26 22:21:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 3,314 ms
コンパイル使用メモリ 74,832 KB
実行使用メモリ 59,080 KB
最終ジャッジ日時 2024-11-18 07:28:52
合計ジャッジ時間 10,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,144 KB
testcase_01 AC 111 ms
53,652 KB
testcase_02 AC 106 ms
53,012 KB
testcase_03 AC 227 ms
58,304 KB
testcase_04 AC 202 ms
57,408 KB
testcase_05 AC 223 ms
58,616 KB
testcase_06 AC 204 ms
58,044 KB
testcase_07 AC 207 ms
57,552 KB
testcase_08 AC 225 ms
58,268 KB
testcase_09 AC 192 ms
56,864 KB
testcase_10 AC 233 ms
58,596 KB
testcase_11 AC 214 ms
57,912 KB
testcase_12 AC 221 ms
58,644 KB
testcase_13 AC 238 ms
58,688 KB
testcase_14 AC 129 ms
54,528 KB
testcase_15 AC 135 ms
54,284 KB
testcase_16 AC 232 ms
58,800 KB
testcase_17 AC 235 ms
59,072 KB
testcase_18 AC 247 ms
58,048 KB
testcase_19 AC 239 ms
59,080 KB
testcase_20 AC 115 ms
53,100 KB
testcase_21 AC 119 ms
53,972 KB
testcase_22 AC 117 ms
52,752 KB
testcase_23 AC 116 ms
53,080 KB
testcase_24 AC 133 ms
54,296 KB
testcase_25 AC 160 ms
54,324 KB
testcase_26 AC 129 ms
53,996 KB
testcase_27 AC 106 ms
54,176 KB
testcase_28 AC 118 ms
54,140 KB
testcase_29 AC 199 ms
57,660 KB
testcase_30 AC 184 ms
56,856 KB
testcase_31 AC 105 ms
53,116 KB
testcase_32 AC 115 ms
53,012 KB
testcase_33 AC 108 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No5 {

	public void run(){
		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 sum = 0;
		int count = 0;
		for(int i=0; i<N ;i++){
			sum+=w[i];
			if(sum>L)
				break;
			count++;
		}
		
		System.out.println(count);
		
		
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		new No5().run();
	}

}
0