結果

問題 No.5 数字のブロック
ユーザー ryunocchiryunocchi
提出日時 2019-04-06 23:50:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 3,218 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 47,592 KB
最終ジャッジ日時 2024-04-29 11:19:26
合計ジャッジ時間 10,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,092 KB
testcase_01 AC 118 ms
39,928 KB
testcase_02 AC 127 ms
41,316 KB
testcase_03 AC 251 ms
46,616 KB
testcase_04 AC 229 ms
45,676 KB
testcase_05 AC 256 ms
47,100 KB
testcase_06 AC 240 ms
46,200 KB
testcase_07 AC 227 ms
45,480 KB
testcase_08 AC 250 ms
46,624 KB
testcase_09 AC 201 ms
43,608 KB
testcase_10 AC 262 ms
47,076 KB
testcase_11 AC 234 ms
45,988 KB
testcase_12 AC 250 ms
46,568 KB
testcase_13 AC 251 ms
47,040 KB
testcase_14 AC 140 ms
41,376 KB
testcase_15 AC 164 ms
41,836 KB
testcase_16 AC 250 ms
46,436 KB
testcase_17 AC 268 ms
47,572 KB
testcase_18 AC 269 ms
47,180 KB
testcase_19 AC 268 ms
47,592 KB
testcase_20 AC 126 ms
41,068 KB
testcase_21 AC 115 ms
39,980 KB
testcase_22 AC 126 ms
41,256 KB
testcase_23 AC 129 ms
41,364 KB
testcase_24 AC 155 ms
41,856 KB
testcase_25 AC 170 ms
41,896 KB
testcase_26 AC 130 ms
41,336 KB
testcase_27 AC 130 ms
41,128 KB
testcase_28 AC 131 ms
41,644 KB
testcase_29 AC 226 ms
45,368 KB
testcase_30 AC 207 ms
43,732 KB
testcase_31 AC 131 ms
41,160 KB
testcase_32 AC 133 ms
41,344 KB
testcase_33 AC 131 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int L = sc.nextInt();
        int N = sc.nextInt();
        int a[] = new int[N];
        int cnt = 0;
        for(int i = 0; i < N; i++){
          a[i] = sc.nextInt();
        }
        Arrays.sort(a);
        for(int j:a){
          L -= j;
          if(L < 0) break;
          cnt++;
        }
        System.out.println(cnt);
    }
}
0