結果

問題 No.5 数字のブロック
ユーザー リチウムリチウム
提出日時 2014-11-21 21:19:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 47,632 KB
最終ジャッジ日時 2024-06-10 21:31:44
合計ジャッジ時間 8,462 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,080 KB
testcase_01 AC 108 ms
41,108 KB
testcase_02 WA -
testcase_03 AC 201 ms
45,872 KB
testcase_04 AC 234 ms
45,548 KB
testcase_05 WA -
testcase_06 AC 200 ms
46,140 KB
testcase_07 AC 195 ms
45,568 KB
testcase_08 AC 215 ms
46,404 KB
testcase_09 AC 179 ms
43,464 KB
testcase_10 AC 223 ms
47,012 KB
testcase_11 AC 198 ms
46,080 KB
testcase_12 AC 205 ms
46,640 KB
testcase_13 AC 228 ms
47,012 KB
testcase_14 AC 122 ms
41,204 KB
testcase_15 WA -
testcase_16 AC 228 ms
46,440 KB
testcase_17 AC 228 ms
47,632 KB
testcase_18 AC 230 ms
47,484 KB
testcase_19 AC 238 ms
47,328 KB
testcase_20 AC 102 ms
40,492 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 101 ms
40,108 KB
testcase_24 AC 147 ms
42,000 KB
testcase_25 AC 154 ms
42,152 KB
testcase_26 AC 108 ms
41,036 KB
testcase_27 AC 102 ms
40,396 KB
testcase_28 AC 111 ms
40,972 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 109 ms
39,984 KB
testcase_32 AC 108 ms
41,088 KB
testcase_33 AC 111 ms
41,120 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++;
		  }
		  i++;
	  }
	  System.out.println(ans);
  }}
0