結果

問題 No.156 キャンディー・ボックス
ユーザー a_Higua_Higu
提出日時 2015-03-02 10:40:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 3,086 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 49,948 KB
最終ジャッジ日時 2023-09-18 18:49:32
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,820 KB
testcase_01 AC 46 ms
49,752 KB
testcase_02 AC 47 ms
49,368 KB
testcase_03 AC 46 ms
49,468 KB
testcase_04 AC 43 ms
49,332 KB
testcase_05 AC 47 ms
49,564 KB
testcase_06 AC 43 ms
49,436 KB
testcase_07 AC 43 ms
49,804 KB
testcase_08 AC 43 ms
49,548 KB
testcase_09 AC 43 ms
49,396 KB
testcase_10 AC 44 ms
49,768 KB
testcase_11 AC 43 ms
49,540 KB
testcase_12 AC 44 ms
49,948 KB
testcase_13 AC 45 ms
49,312 KB
testcase_14 AC 44 ms
49,476 KB
testcase_15 AC 44 ms
49,628 KB
testcase_16 AC 44 ms
49,484 KB
testcase_17 AC 44 ms
49,744 KB
testcase_18 AC 46 ms
49,396 KB
testcase_19 AC 47 ms
49,768 KB
testcase_20 AC 47 ms
49,400 KB
testcase_21 AC 46 ms
49,424 KB
testcase_22 AC 46 ms
49,616 KB
testcase_23 AC 46 ms
49,376 KB
testcase_24 AC 48 ms
49,540 KB
testcase_25 AC 44 ms
49,540 KB
testcase_26 AC 43 ms
49,412 KB
testcase_27 AC 43 ms
49,544 KB
testcase_28 AC 47 ms
49,600 KB
testcase_29 AC 46 ms
49,472 KB
testcase_30 AC 46 ms
49,648 KB
testcase_31 AC 47 ms
49,388 KB
testcase_32 AC 46 ms
47,792 KB
testcase_33 AC 43 ms
49,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.InputMismatchException;
import java.util.List;

public class Main {
	static StringBuilder out = new StringBuilder();
	static String ls = System.lineSeparator();
	static final String OK = "Possible";
	static final String NG = "Impossible";
	static FastReader fr = new FastReader();

	// static final int INF = Integer.MAX_VALUE - 300000000;

	public static void main(String[] args) throws Exception, IOException {
		int n = fr.nextInt();
		int m = fr.nextInt();
		List<Integer> nums = fr.nextIntList(n);
		Collections.sort(nums);

		int sum = 0;
		int count = 0;
		for(int num : nums){
			sum += num;
			if(sum > m)
				printExit(""+count);
			count++;
		}
		System.out.println(count);
	}

	static void printExit(String msg) {
		System.out.println(msg);
		System.exit(0);
	}
}

class FastReader {
	private InputStream in = System.in;
	private byte[] buf = new byte[1024];
	private int charNum;
	private int charLen;
	private StringBuilder sb = new StringBuilder();

	public int read() {
		if (charLen == -1)
			throw new InputMismatchException();
		if (charNum >= charLen) {
			charNum = 0;
			try {
				charLen = in.read(buf);
			} catch (IOException e) {
				throw new InputMismatchException();
			}
			if (charLen <= 0)
				return -1;
		}
		return buf[charNum++];
	}

	public String next() {
		int c = read();
		while (isWhitespace(c)) {
			c = read();
		}
		sb.setLength(0);
		do {
			sb.appendCodePoint(c);
			c = read();
		} while (!isWhitespace(c));
		return sb.toString();
	}

	public char[] nextCharArray() {
		return next().toCharArray();
	}

	public int nextInt() {
		return (int) nextLong();
	}

	public int[] nextIntArray(int n) {
		int[] array = new int[n];
		for (int i = 0; i < n; i++)
			array[i] = nextInt();
		return array;
	}

	public List<Integer> nextIntList(int n) {
		Integer[] array = new Integer[n];
		for (int i = 0; i < n; i++)
			array[i] = nextInt();
		return Arrays.asList(array);
	}

	public int[][] nextIntArray2D(int n, int m) {
		int[][] array = new int[n][m];
		for (int i = 0; i < n; i++)
			array[i] = nextIntArray(m);
		return array;
	}

	public List<int[]> nextIntsList(int n, int m) {
		List<int[]> list = new ArrayList<>(n);
		for (int i = 0; i < n; i++)
			list.add(nextIntArray(m));
		return list;
	}

	public long nextLong() {
		int c = read();
		while (isWhitespace(c)) {
			c = read();
		}
		int sgn = 1;
		if (c == '-') {
			sgn = -1;
			c = read();
		}
		long res = 0;
		do {
			if (c < '0' || c > '9')
				throw new InputMismatchException();
			res *= 10;
			res += c - '0';
			c = read();
		} while (!isWhitespace(c));
		return res * sgn;
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}

	public double[] nextDoubleArray(int n) {
		double[] array = new double[n];
		for (int i = 0; i < n; i++)
			array[i] = nextDouble();
		return array;
	}

	public boolean isWhitespace(int c) {
		return c == ' ' || c == '\n' || c == '\r' || c == '\t' || c == -1;
	}
}
0