結果

問題 No.5 数字のブロック
ユーザー asahi32942398asahi32942398
提出日時 2018-04-28 14:23:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 59,076 KB
最終ジャッジ日時 2024-11-18 12:21:11
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,024 KB
testcase_01 AC 125 ms
53,992 KB
testcase_02 AC 119 ms
54,144 KB
testcase_03 AC 218 ms
58,388 KB
testcase_04 AC 192 ms
57,420 KB
testcase_05 AC 231 ms
58,848 KB
testcase_06 AC 210 ms
58,220 KB
testcase_07 AC 207 ms
57,524 KB
testcase_08 AC 215 ms
58,628 KB
testcase_09 AC 182 ms
56,996 KB
testcase_10 AC 231 ms
58,340 KB
testcase_11 AC 210 ms
57,136 KB
testcase_12 AC 229 ms
58,248 KB
testcase_13 AC 233 ms
58,332 KB
testcase_14 AC 125 ms
53,888 KB
testcase_15 AC 151 ms
54,272 KB
testcase_16 AC 239 ms
59,076 KB
testcase_17 AC 246 ms
58,496 KB
testcase_18 AC 240 ms
57,864 KB
testcase_19 AC 246 ms
58,624 KB
testcase_20 AC 119 ms
54,140 KB
testcase_21 AC 118 ms
54,068 KB
testcase_22 AC 106 ms
53,168 KB
testcase_23 AC 120 ms
54,228 KB
testcase_24 AC 140 ms
54,364 KB
testcase_25 AC 162 ms
54,396 KB
testcase_26 AC 121 ms
54,200 KB
testcase_27 AC 108 ms
53,096 KB
testcase_28 AC 116 ms
53,876 KB
testcase_29 AC 203 ms
57,532 KB
testcase_30 AC 185 ms
56,380 KB
testcase_31 AC 115 ms
54,280 KB
testcase_32 AC 120 ms
54,196 KB
testcase_33 AC 120 ms
54,268 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 bn = sc.nextInt(); 
int[] bw = new int[bn];
int sum=0;
int answer=0;
for(int i=0;i<bn;i++){
  bw[i] = sc.nextInt(); 
}
Arrays.sort(bw);
for(int i=1;i<=bn;i++){
     sum+=bw[i-1];
  if(L>=sum){
    if(i==bn){
    answer = bn;
    }
  }else{
  answer = i-1;
  break;
  }
}
System.out.println(answer);
}
}
0