結果

問題 No.5 数字のブロック
ユーザー kuramukuramu
提出日時 2016-01-19 22:25:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 40,588 KB
最終ジャッジ日時 2024-09-21 14:28:44
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,116 KB
testcase_01 AC 51 ms
36,828 KB
testcase_02 WA -
testcase_03 AC 96 ms
38,960 KB
testcase_04 AC 76 ms
38,236 KB
testcase_05 AC 103 ms
39,804 KB
testcase_06 AC 97 ms
39,232 KB
testcase_07 AC 78 ms
38,464 KB
testcase_08 AC 80 ms
38,684 KB
testcase_09 AC 62 ms
37,504 KB
testcase_10 AC 103 ms
39,856 KB
testcase_11 AC 84 ms
38,600 KB
testcase_12 AC 85 ms
38,908 KB
testcase_13 AC 104 ms
39,592 KB
testcase_14 AC 53 ms
37,008 KB
testcase_15 AC 53 ms
37,020 KB
testcase_16 AC 104 ms
39,664 KB
testcase_17 AC 106 ms
39,640 KB
testcase_18 AC 102 ms
39,916 KB
testcase_19 AC 109 ms
40,588 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
37,060 KB
testcase_24 AC 54 ms
37,248 KB
testcase_25 AC 54 ms
37,084 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 75 ms
38,728 KB
testcase_30 AC 65 ms
37,852 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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