結果

問題 No.5 数字のブロック
ユーザー koukonkokoukonko
提出日時 2015-12-07 11:01:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 232 ms / 5,000 ms
コード長 868 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 51,956 KB
最終ジャッジ日時 2024-11-18 07:58:12
合計ジャッジ時間 6,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,028 KB
testcase_01 AC 55 ms
50,316 KB
testcase_02 AC 53 ms
50,372 KB
testcase_03 AC 144 ms
51,808 KB
testcase_04 AC 111 ms
51,600 KB
testcase_05 AC 191 ms
51,880 KB
testcase_06 AC 128 ms
51,864 KB
testcase_07 AC 107 ms
51,492 KB
testcase_08 AC 141 ms
51,940 KB
testcase_09 AC 104 ms
51,936 KB
testcase_10 AC 212 ms
51,820 KB
testcase_11 AC 107 ms
51,684 KB
testcase_12 AC 147 ms
51,940 KB
testcase_13 AC 188 ms
51,824 KB
testcase_14 AC 54 ms
50,212 KB
testcase_15 AC 57 ms
50,212 KB
testcase_16 AC 192 ms
51,848 KB
testcase_17 AC 226 ms
51,808 KB
testcase_18 AC 218 ms
51,932 KB
testcase_19 AC 232 ms
51,824 KB
testcase_20 AC 59 ms
50,240 KB
testcase_21 AC 57 ms
49,864 KB
testcase_22 AC 54 ms
50,296 KB
testcase_23 AC 55 ms
50,476 KB
testcase_24 AC 57 ms
50,108 KB
testcase_25 AC 60 ms
50,332 KB
testcase_26 AC 54 ms
50,160 KB
testcase_27 AC 54 ms
50,120 KB
testcase_28 AC 53 ms
49,888 KB
testcase_29 AC 108 ms
51,460 KB
testcase_30 AC 92 ms
51,956 KB
testcase_31 AC 53 ms
50,344 KB
testcase_32 AC 55 ms
50,412 KB
testcase_33 AC 54 ms
50,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int L = Integer.parseInt(buff.readLine());
			int N = Integer.parseInt(buff.readLine());
			int[] box = new int[N];
			String[] str = buff.readLine().split(" ");

			for (int i = 0; i < N; ++i) {
				box[i] = Integer.parseInt(str[i]);
				for (int j = 0; j < i; ++j) {
					if (box[i] < box[j]) {
						int w = box[i];
						box[i] = box[j];
						box[j] = w;
					}
				}
			}
			int ans = 0;
			int sum = 0;
			for (int i = 0; i < N; ++i) {
				sum += box[i];
				if (sum > L) {
					break;
				}
				++ans;
			}

			System.out.println(ans);
		} catch (NumberFormatException e) {

		} catch (IOException e) {

		}
	}
}
0