結果

問題 No.5 数字のブロック
ユーザー GBGB
提出日時 2018-04-09 14:29:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 205 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 2,520 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 47,172 KB
最終ジャッジ日時 2024-11-18 12:16:28
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
41,368 KB
testcase_01 AC 111 ms
41,460 KB
testcase_02 AC 109 ms
41,492 KB
testcase_03 AC 179 ms
44,920 KB
testcase_04 AC 169 ms
43,644 KB
testcase_05 AC 190 ms
44,840 KB
testcase_06 AC 177 ms
44,116 KB
testcase_07 AC 176 ms
43,716 KB
testcase_08 AC 180 ms
44,092 KB
testcase_09 AC 156 ms
42,388 KB
testcase_10 AC 194 ms
46,016 KB
testcase_11 AC 171 ms
44,064 KB
testcase_12 AC 184 ms
44,828 KB
testcase_13 AC 194 ms
45,684 KB
testcase_14 AC 124 ms
41,540 KB
testcase_15 AC 122 ms
41,700 KB
testcase_16 AC 181 ms
45,428 KB
testcase_17 AC 201 ms
47,172 KB
testcase_18 AC 202 ms
46,256 KB
testcase_19 AC 205 ms
46,960 KB
testcase_20 AC 112 ms
41,248 KB
testcase_21 AC 110 ms
41,500 KB
testcase_22 AC 99 ms
41,104 KB
testcase_23 AC 104 ms
41,252 KB
testcase_24 AC 139 ms
41,424 KB
testcase_25 AC 152 ms
41,468 KB
testcase_26 AC 100 ms
41,328 KB
testcase_27 AC 116 ms
41,396 KB
testcase_28 AC 113 ms
41,344 KB
testcase_29 AC 174 ms
43,588 KB
testcase_30 AC 166 ms
42,560 KB
testcase_31 AC 113 ms
41,484 KB
testcase_32 AC 119 ms
41,636 KB
testcase_33 AC 126 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) {

    Scanner scan=new Scanner(System.in);
    int l=Integer.parseInt(scan.next());
    int n=Integer.parseInt(scan.next());
    int[] w=new int[n];
    for(int i=0;i<w.length;i++){
      w[i]=Integer.parseInt(scan.next());
    }

    Arrays.sort(w);

    int length=0;
    int count=0;
    for(int i=0;i<w.length;i++){
      length+=w[i];
      if(length<=l){
        count++;
      }else{
        break;
      }
    }

    System.out.println(count);
  }
}
0