結果

問題 No.5 数字のブロック
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-11 21:12:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 58,928 KB
最終ジャッジ日時 2024-11-18 11:14:39
合計ジャッジ時間 10,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,228 KB
testcase_01 AC 134 ms
53,980 KB
testcase_02 AC 139 ms
54,112 KB
testcase_03 AC 249 ms
58,480 KB
testcase_04 AC 231 ms
57,460 KB
testcase_05 AC 265 ms
58,316 KB
testcase_06 AC 233 ms
58,072 KB
testcase_07 AC 219 ms
57,324 KB
testcase_08 AC 255 ms
58,256 KB
testcase_09 AC 208 ms
56,928 KB
testcase_10 AC 264 ms
58,680 KB
testcase_11 AC 224 ms
58,204 KB
testcase_12 AC 255 ms
58,200 KB
testcase_13 AC 263 ms
58,408 KB
testcase_14 AC 149 ms
54,284 KB
testcase_15 AC 160 ms
54,116 KB
testcase_16 AC 266 ms
58,912 KB
testcase_17 AC 279 ms
58,424 KB
testcase_18 AC 278 ms
58,476 KB
testcase_19 AC 279 ms
58,928 KB
testcase_20 AC 139 ms
54,452 KB
testcase_21 AC 138 ms
54,012 KB
testcase_22 AC 141 ms
54,200 KB
testcase_23 AC 134 ms
53,996 KB
testcase_24 AC 174 ms
54,368 KB
testcase_25 AC 190 ms
54,268 KB
testcase_26 AC 136 ms
54,020 KB
testcase_27 AC 136 ms
53,856 KB
testcase_28 AC 140 ms
54,276 KB
testcase_29 AC 226 ms
57,496 KB
testcase_30 AC 210 ms
56,832 KB
testcase_31 AC 141 ms
53,944 KB
testcase_32 AC 138 ms
54,100 KB
testcase_33 AC 138 ms
54,228 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;
    for(int i = 0; i < N; i++) {
      L -= w[i];
      if(L >= 0) {
        ans++;
      } else {
        break;
      }
    }
    System.out.println(ans);
  }
}
0