結果

問題 No.5 数字のブロック
ユーザー koukonkokoukonko
提出日時 2015-12-16 21:26:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 379 ms / 5,000 ms
コード長 887 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 77,572 KB
実行使用メモリ 52,668 KB
最終ジャッジ日時 2024-11-18 07:58:26
合計ジャッジ時間 7,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,020 KB
testcase_01 AC 54 ms
50,196 KB
testcase_02 AC 55 ms
50,208 KB
testcase_03 AC 184 ms
52,164 KB
testcase_04 AC 110 ms
51,672 KB
testcase_05 AC 265 ms
52,064 KB
testcase_06 AC 155 ms
51,360 KB
testcase_07 AC 134 ms
51,184 KB
testcase_08 AC 178 ms
52,060 KB
testcase_09 AC 103 ms
52,436 KB
testcase_10 AC 249 ms
52,040 KB
testcase_11 AC 126 ms
51,404 KB
testcase_12 AC 210 ms
52,180 KB
testcase_13 AC 254 ms
51,964 KB
testcase_14 AC 55 ms
50,232 KB
testcase_15 AC 57 ms
50,260 KB
testcase_16 AC 268 ms
51,896 KB
testcase_17 AC 312 ms
52,320 KB
testcase_18 AC 271 ms
51,844 KB
testcase_19 AC 379 ms
52,076 KB
testcase_20 AC 55 ms
49,964 KB
testcase_21 AC 54 ms
50,176 KB
testcase_22 AC 55 ms
50,116 KB
testcase_23 AC 54 ms
50,248 KB
testcase_24 AC 59 ms
50,268 KB
testcase_25 AC 65 ms
50,528 KB
testcase_26 AC 58 ms
50,328 KB
testcase_27 AC 57 ms
50,008 KB
testcase_28 AC 53 ms
50,044 KB
testcase_29 AC 112 ms
51,640 KB
testcase_30 AC 114 ms
52,668 KB
testcase_31 AC 56 ms
50,252 KB
testcase_32 AC 54 ms
50,212 KB
testcase_33 AC 55 ms
50,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

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

		try {
			int L = Integer.parseInt(read.readLine());
			int N = Integer.parseInt(read.readLine());

			String[] box = read.readLine().split(" ");
			int[] w = new int[N];
			for (int i = 0; i < N; ++i) {
				w[i] = Integer.parseInt(box[i]);
			}

			int total = 0, ans = 0;
			for (int i = 0; i < N - 1; ++i) {
				for (int j = i + 1; j < N; ++j) {
					if (w[i] > w[j]) {
						int sw = w[i];
						w[i] = w[j];
						w[j] = sw;
					}
				}
			}
			for (int i = 0; i < N; ++i) {
				total += w[i];
				if (total <= L) {
					++ans;
				} else {
					break;
				}

			}
			System.out.println(ans);

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0