結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

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