結果

問題 No.5 数字のブロック
ユーザー リチウムリチウム
提出日時 2014-11-21 21:21:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 59,048 KB
最終ジャッジ日時 2024-11-17 22:03:09
合計ジャッジ時間 7,867 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
52,952 KB
testcase_01 AC 93 ms
53,004 KB
testcase_02 AC 99 ms
53,592 KB
testcase_03 AC 199 ms
58,024 KB
testcase_04 AC 185 ms
57,240 KB
testcase_05 AC 209 ms
58,144 KB
testcase_06 AC 199 ms
57,804 KB
testcase_07 AC 187 ms
57,216 KB
testcase_08 AC 197 ms
57,588 KB
testcase_09 AC 167 ms
56,796 KB
testcase_10 AC 206 ms
58,652 KB
testcase_11 AC 182 ms
57,224 KB
testcase_12 AC 201 ms
58,308 KB
testcase_13 AC 206 ms
58,512 KB
testcase_14 AC 117 ms
53,928 KB
testcase_15 AC 132 ms
54,352 KB
testcase_16 AC 205 ms
58,400 KB
testcase_17 AC 211 ms
59,048 KB
testcase_18 AC 221 ms
57,592 KB
testcase_19 AC 215 ms
58,476 KB
testcase_20 AC 105 ms
53,920 KB
testcase_21 AC 105 ms
54,060 KB
testcase_22 AC 102 ms
53,948 KB
testcase_23 AC 104 ms
54,024 KB
testcase_24 AC 123 ms
53,928 KB
testcase_25 AC 154 ms
54,280 KB
testcase_26 AC 107 ms
53,852 KB
testcase_27 AC 95 ms
52,976 KB
testcase_28 AC 104 ms
53,920 KB
testcase_29 AC 181 ms
57,108 KB
testcase_30 AC 165 ms
56,480 KB
testcase_31 AC 104 ms
53,648 KB
testcase_32 AC 93 ms
53,360 KB
testcase_33 AC 105 ms
53,996 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