結果

問題 No.5 数字のブロック
ユーザー koukonkokoukonko
提出日時 2015-12-16 21:23:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 829 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 39,952 KB
最終ジャッジ日時 2024-09-16 05:57:28
合計ジャッジ時間 5,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,908 KB
testcase_01 AC 50 ms
36,924 KB
testcase_02 WA -
testcase_03 AC 95 ms
39,344 KB
testcase_04 AC 85 ms
38,508 KB
testcase_05 AC 107 ms
39,592 KB
testcase_06 AC 90 ms
38,932 KB
testcase_07 AC 83 ms
38,524 KB
testcase_08 AC 103 ms
39,376 KB
testcase_09 AC 65 ms
37,924 KB
testcase_10 AC 107 ms
39,372 KB
testcase_11 AC 81 ms
38,588 KB
testcase_12 AC 105 ms
39,440 KB
testcase_13 AC 104 ms
39,288 KB
testcase_14 AC 51 ms
36,740 KB
testcase_15 AC 51 ms
37,064 KB
testcase_16 AC 105 ms
39,568 KB
testcase_17 AC 111 ms
39,620 KB
testcase_18 AC 111 ms
39,952 KB
testcase_19 AC 102 ms
39,812 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 50 ms
36,924 KB
testcase_24 AC 51 ms
36,732 KB
testcase_25 AC 53 ms
37,288 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 84 ms
38,824 KB
testcase_30 AC 68 ms
38,208 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
					}
				}
				total += w[i];
				if (total <= L) {
					++ans;
				} else {
					break;
				}

			}
			System.out.println(ans);

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