結果

問題 No.5 数字のブロック
ユーザー kuramu
提出日時 2016-01-19 22:25:13
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 40,588 KB
最終ジャッジ日時 2024-09-21 14:28:44
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 10
権限があれば一括ダウンロードができます

ソースコード

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){
	    			  System.out.println(count);
	    			  break;
	    		  }
	    		  count++;
	    	  }
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0