結果

問題 No.5 数字のブロック
ユーザー リチウムリチウム
提出日時 2014-11-21 21:20:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 470 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 47,836 KB
最終ジャッジ日時 2024-06-10 21:32:15
合計ジャッジ時間 10,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,148 KB
testcase_01 AC 138 ms
41,116 KB
testcase_02 WA -
testcase_03 AC 237 ms
46,464 KB
testcase_04 AC 236 ms
45,712 KB
testcase_05 WA -
testcase_06 AC 221 ms
45,656 KB
testcase_07 AC 230 ms
45,568 KB
testcase_08 AC 256 ms
46,656 KB
testcase_09 AC 215 ms
43,536 KB
testcase_10 AC 274 ms
47,804 KB
testcase_11 AC 234 ms
46,116 KB
testcase_12 AC 262 ms
47,016 KB
testcase_13 AC 262 ms
46,376 KB
testcase_14 AC 155 ms
41,664 KB
testcase_15 WA -
testcase_16 AC 270 ms
46,868 KB
testcase_17 AC 288 ms
47,836 KB
testcase_18 AC 283 ms
47,604 KB
testcase_19 AC 279 ms
47,208 KB
testcase_20 AC 137 ms
41,192 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 141 ms
41,524 KB
testcase_24 AC 172 ms
41,784 KB
testcase_25 AC 180 ms
42,080 KB
testcase_26 AC 139 ms
41,316 KB
testcase_27 AC 137 ms
41,328 KB
testcase_28 AC 138 ms
41,428 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 141 ms
41,284 KB
testcase_32 AC 133 ms
41,244 KB
testcase_33 AC 132 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	
  public static void main(String[] args) {
	  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 ans=0;
	  int sum=0;
	  int i=0;
	  while(i<n){
		  if(L-sum>w[i]){
			  sum+=w[i];
			  ans++;
			  if(sum>=L)break;
		  }
		  i++;
	  }
	  System.out.println(ans);
  }}
0