結果

問題 No.5 数字のブロック
ユーザー kuramukuramu
提出日時 2016-01-19 22:29:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 52,628 KB
最終ジャッジ日時 2024-11-18 08:06:35
合計ジャッジ時間 5,539 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,408 KB
testcase_01 AC 51 ms
50,376 KB
testcase_02 AC 52 ms
50,352 KB
testcase_03 AC 78 ms
51,368 KB
testcase_04 AC 79 ms
51,244 KB
testcase_05 AC 96 ms
52,196 KB
testcase_06 AC 87 ms
51,788 KB
testcase_07 AC 73 ms
51,420 KB
testcase_08 AC 91 ms
51,252 KB
testcase_09 AC 59 ms
50,584 KB
testcase_10 AC 98 ms
52,096 KB
testcase_11 AC 79 ms
51,308 KB
testcase_12 AC 87 ms
51,688 KB
testcase_13 AC 99 ms
52,572 KB
testcase_14 AC 52 ms
50,468 KB
testcase_15 AC 53 ms
50,544 KB
testcase_16 AC 96 ms
52,628 KB
testcase_17 AC 101 ms
52,540 KB
testcase_18 AC 96 ms
52,056 KB
testcase_19 AC 100 ms
52,328 KB
testcase_20 AC 53 ms
50,060 KB
testcase_21 AC 51 ms
50,388 KB
testcase_22 AC 50 ms
49,976 KB
testcase_23 AC 56 ms
50,484 KB
testcase_24 AC 52 ms
50,116 KB
testcase_25 AC 53 ms
50,580 KB
testcase_26 AC 51 ms
50,124 KB
testcase_27 AC 51 ms
50,424 KB
testcase_28 AC 51 ms
50,452 KB
testcase_29 AC 76 ms
51,308 KB
testcase_30 AC 63 ms
50,908 KB
testcase_31 AC 49 ms
50,396 KB
testcase_32 AC 50 ms
50,124 KB
testcase_33 AC 52 ms
50,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      
	      try {
	    	  int L = Integer.parseInt(stdReader.readLine());
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  String[] temps = stdReader.readLine().split(" ");
	    	  int[] nums = new int[temps.length];
	    	  for(int i=0;i<temps.length;i++){
	    		  nums[i] = Integer.parseInt(temps[i]);
	    	  }
	    	  
	    	  Arrays.sort(nums);
	    	  int sum = 0;
	    	  int count = 0;
	    	  for(int i=0;i<nums.length;i++){
	    		  sum += nums[i];
	    		  if(sum>L){
	    			  break;
	    		  }
	    		  count++;
	    	  }
			  System.out.println(count);
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0