結果

問題 No.5 数字のブロック
ユーザー oyafusooyafuso
提出日時 2019-03-11 17:55:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 950 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 76,872 KB
実行使用メモリ 43,924 KB
最終ジャッジ日時 2024-11-18 13:00:44
合計ジャッジ時間 8,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,208 KB
testcase_01 AC 131 ms
41,252 KB
testcase_02 AC 126 ms
40,960 KB
testcase_03 AC 203 ms
42,624 KB
testcase_04 AC 187 ms
42,272 KB
testcase_05 AC 219 ms
43,232 KB
testcase_06 AC 197 ms
42,404 KB
testcase_07 AC 197 ms
42,236 KB
testcase_08 AC 206 ms
42,532 KB
testcase_09 AC 168 ms
41,568 KB
testcase_10 AC 229 ms
43,784 KB
testcase_11 AC 179 ms
41,872 KB
testcase_12 AC 201 ms
42,540 KB
testcase_13 AC 222 ms
43,532 KB
testcase_14 AC 134 ms
41,312 KB
testcase_15 AC 135 ms
41,224 KB
testcase_16 AC 217 ms
43,104 KB
testcase_17 AC 235 ms
43,776 KB
testcase_18 AC 228 ms
43,684 KB
testcase_19 AC 227 ms
43,924 KB
testcase_20 AC 134 ms
41,268 KB
testcase_21 AC 126 ms
41,144 KB
testcase_22 AC 130 ms
41,328 KB
testcase_23 AC 129 ms
41,588 KB
testcase_24 AC 139 ms
41,144 KB
testcase_25 AC 145 ms
41,504 KB
testcase_26 AC 128 ms
41,304 KB
testcase_27 AC 125 ms
41,168 KB
testcase_28 AC 129 ms
41,104 KB
testcase_29 AC 181 ms
41,912 KB
testcase_30 AC 166 ms
41,832 KB
testcase_31 AC 127 ms
41,420 KB
testcase_32 AC 127 ms
41,428 KB
testcase_33 AC 118 ms
39,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		int L = Integer.parseInt(input);
		sc.reset();
		input = sc.nextLine();
		sc.reset();
		input = sc.nextLine();
		String[] split = input.split(SPLIT_STR);
		List<Integer> numList = new ArrayList<>(split.length);
		for (int i = 0; i < split.length; i++) {
			numList.add(Integer.parseInt(split[i]));
		}
		// Scannerクローズ
		sc.close();

		/* メイン処理開始 */
		// 変数初期化
		int result = 0;
		int remain = L;
		// 結果設定
		Collections.sort(numList);
		for (int i = 0; i < numList.size(); i++) {
			if (remain >= numList.get(i)) {
				remain -= numList.get(i);
				result++;
			} else {
				break;
			}
		}
		/* メイン処理終了 */

		// 結果出力
		System.out.println(result);
	}
}
0