結果

問題 No.5 数字のブロック
ユーザー ryunocchiryunocchi
提出日時 2019-04-06 23:50:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 2,750 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 47,756 KB
最終ジャッジ日時 2024-11-18 14:17:50
合計ジャッジ時間 10,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,380 KB
testcase_01 AC 120 ms
41,584 KB
testcase_02 AC 121 ms
41,684 KB
testcase_03 AC 219 ms
46,596 KB
testcase_04 AC 203 ms
46,040 KB
testcase_05 AC 226 ms
46,664 KB
testcase_06 AC 197 ms
46,704 KB
testcase_07 AC 207 ms
46,012 KB
testcase_08 AC 220 ms
46,116 KB
testcase_09 AC 172 ms
43,436 KB
testcase_10 AC 228 ms
47,432 KB
testcase_11 AC 188 ms
45,672 KB
testcase_12 AC 224 ms
46,600 KB
testcase_13 AC 226 ms
46,464 KB
testcase_14 AC 134 ms
41,508 KB
testcase_15 AC 148 ms
41,692 KB
testcase_16 AC 228 ms
46,936 KB
testcase_17 AC 237 ms
47,536 KB
testcase_18 AC 241 ms
47,580 KB
testcase_19 AC 241 ms
47,756 KB
testcase_20 AC 108 ms
41,540 KB
testcase_21 AC 117 ms
40,284 KB
testcase_22 AC 119 ms
41,452 KB
testcase_23 AC 117 ms
41,528 KB
testcase_24 AC 152 ms
41,880 KB
testcase_25 AC 159 ms
41,984 KB
testcase_26 AC 109 ms
41,312 KB
testcase_27 AC 121 ms
41,624 KB
testcase_28 AC 109 ms
41,352 KB
testcase_29 AC 206 ms
45,660 KB
testcase_30 AC 183 ms
44,216 KB
testcase_31 AC 102 ms
41,500 KB
testcase_32 AC 114 ms
41,496 KB
testcase_33 AC 104 ms
41,248 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