結果

問題 No.5 数字のブロック
ユーザー crazybbb3crazybbb3
提出日時 2016-12-07 22:08:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 5,000 ms
コード長 1,946 bytes
コンパイル時間 2,878 ms
コンパイル使用メモリ 77,748 KB
実行使用メモリ 40,244 KB
最終ジャッジ日時 2024-11-18 10:47:18
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,224 KB
testcase_01 AC 54 ms
37,136 KB
testcase_02 AC 56 ms
37,332 KB
testcase_03 AC 112 ms
39,780 KB
testcase_04 AC 89 ms
38,932 KB
testcase_05 AC 114 ms
39,772 KB
testcase_06 AC 107 ms
39,584 KB
testcase_07 AC 90 ms
38,712 KB
testcase_08 AC 108 ms
39,748 KB
testcase_09 AC 73 ms
38,136 KB
testcase_10 AC 113 ms
39,776 KB
testcase_11 AC 90 ms
39,172 KB
testcase_12 AC 111 ms
39,888 KB
testcase_13 AC 112 ms
39,976 KB
testcase_14 AC 55 ms
37,344 KB
testcase_15 AC 55 ms
37,156 KB
testcase_16 AC 113 ms
40,244 KB
testcase_17 AC 116 ms
40,180 KB
testcase_18 AC 111 ms
39,976 KB
testcase_19 AC 111 ms
40,104 KB
testcase_20 AC 55 ms
37,096 KB
testcase_21 AC 54 ms
36,884 KB
testcase_22 AC 54 ms
37,392 KB
testcase_23 AC 55 ms
37,016 KB
testcase_24 AC 57 ms
37,116 KB
testcase_25 AC 59 ms
37,140 KB
testcase_26 AC 55 ms
36,880 KB
testcase_27 AC 55 ms
37,256 KB
testcase_28 AC 55 ms
37,400 KB
testcase_29 AC 96 ms
38,908 KB
testcase_30 AC 84 ms
38,520 KB
testcase_31 AC 54 ms
37,004 KB
testcase_32 AC 54 ms
37,316 KB
testcase_33 AC 56 ms
36,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int l = ni();
        int n = ni();
        int[] w = nia(n);
        Arrays.sort(w);

        int sum = 0;
        int ans = 0;
        for (int i = 0; i < n; i++) {
            sum += w[i];
            if (sum > l) {
                break;
            } else {
                ans++;
            }
        }

        out.println(ans);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0