結果

問題 No.5 数字のブロック
ユーザー zimphazimpha
提出日時 2017-03-23 12:04:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 2,091 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 52,880 KB
最終ジャッジ日時 2024-11-18 10:58:55
合計ジャッジ時間 5,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,560 KB
testcase_01 AC 55 ms
50,260 KB
testcase_02 AC 55 ms
50,456 KB
testcase_03 AC 107 ms
52,572 KB
testcase_04 AC 88 ms
51,796 KB
testcase_05 AC 112 ms
52,536 KB
testcase_06 AC 96 ms
52,408 KB
testcase_07 AC 87 ms
51,668 KB
testcase_08 AC 97 ms
52,804 KB
testcase_09 AC 82 ms
51,296 KB
testcase_10 AC 110 ms
52,424 KB
testcase_11 AC 88 ms
51,780 KB
testcase_12 AC 109 ms
52,668 KB
testcase_13 AC 110 ms
52,416 KB
testcase_14 AC 57 ms
50,220 KB
testcase_15 AC 58 ms
50,120 KB
testcase_16 AC 110 ms
52,564 KB
testcase_17 AC 114 ms
52,652 KB
testcase_18 AC 112 ms
52,580 KB
testcase_19 AC 117 ms
52,880 KB
testcase_20 AC 56 ms
50,492 KB
testcase_21 AC 55 ms
50,504 KB
testcase_22 AC 54 ms
50,444 KB
testcase_23 AC 55 ms
50,584 KB
testcase_24 AC 57 ms
50,168 KB
testcase_25 AC 60 ms
50,376 KB
testcase_26 AC 56 ms
50,460 KB
testcase_27 AC 55 ms
50,456 KB
testcase_28 AC 55 ms
50,456 KB
testcase_29 AC 88 ms
51,792 KB
testcase_30 AC 82 ms
51,064 KB
testcase_31 AC 55 ms
50,520 KB
testcase_32 AC 55 ms
50,344 KB
testcase_33 AC 55 ms
50,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task005 solver = new Task005();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task005 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            int L = in.nextInt();
            int n = in.nextInt();
            int[] w = new int[n];
            for (int i = 0; i < n; i++) {
                w[i] = in.nextInt();
            }
            Arrays.sort(w);
            for (int i = 0; i < n; i++) {
                if (w[i] > L) {
                    out.println(i);
                    return;
                }
                L -= w[i];
            }
            out.println(n);
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0