結果

問題 No.5 数字のブロック
ユーザー face4face4
提出日時 2018-04-09 17:25:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 822 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 52,824 KB
最終ジャッジ日時 2024-11-18 12:16:37
合計ジャッジ時間 5,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,376 KB
testcase_01 AC 50 ms
50,312 KB
testcase_02 AC 49 ms
50,444 KB
testcase_03 AC 85 ms
51,860 KB
testcase_04 AC 73 ms
51,332 KB
testcase_05 AC 97 ms
52,784 KB
testcase_06 AC 82 ms
51,596 KB
testcase_07 AC 78 ms
51,364 KB
testcase_08 AC 74 ms
51,580 KB
testcase_09 AC 57 ms
50,552 KB
testcase_10 AC 85 ms
52,628 KB
testcase_11 AC 69 ms
51,220 KB
testcase_12 AC 95 ms
52,360 KB
testcase_13 AC 92 ms
51,912 KB
testcase_14 AC 51 ms
50,208 KB
testcase_15 AC 51 ms
50,568 KB
testcase_16 AC 97 ms
52,244 KB
testcase_17 AC 101 ms
52,256 KB
testcase_18 AC 98 ms
52,788 KB
testcase_19 AC 105 ms
52,824 KB
testcase_20 AC 51 ms
50,520 KB
testcase_21 AC 49 ms
52,320 KB
testcase_22 AC 50 ms
50,440 KB
testcase_23 AC 48 ms
50,200 KB
testcase_24 AC 52 ms
50,400 KB
testcase_25 AC 54 ms
50,260 KB
testcase_26 AC 51 ms
50,164 KB
testcase_27 AC 50 ms
50,284 KB
testcase_28 AC 49 ms
50,012 KB
testcase_29 AC 70 ms
51,244 KB
testcase_30 AC 57 ms
50,668 KB
testcase_31 AC 48 ms
50,012 KB
testcase_32 AC 50 ms
50,636 KB
testcase_33 AC 49 ms
50,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

class Main {
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int L = Integer.parseInt(br.readLine());
        int n = Integer.parseInt(br.readLine());

        String[] input = br.readLine().split(" ");
        int[] arr = new int[n];
        for(int i = 0; i < n; i++){
            arr[i] = Integer.parseInt(input[i]);
        }

        Arrays.sort(arr);

        int sum = 0;
        int i;
        for(i = 0; i < n; i++){
            if(sum + arr[i] <= L){
                sum += arr[i];
            }else{;
                break;
            }
        }

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