結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,448 KB
testcase_01 AC 118 ms
41,248 KB
testcase_02 AC 111 ms
40,084 KB
testcase_03 AC 188 ms
42,688 KB
testcase_04 AC 175 ms
41,952 KB
testcase_05 AC 195 ms
42,804 KB
testcase_06 AC 176 ms
42,496 KB
testcase_07 AC 179 ms
42,272 KB
testcase_08 AC 167 ms
42,248 KB
testcase_09 AC 153 ms
41,560 KB
testcase_10 AC 209 ms
43,844 KB
testcase_11 AC 162 ms
42,396 KB
testcase_12 AC 185 ms
42,528 KB
testcase_13 AC 193 ms
43,644 KB
testcase_14 AC 107 ms
41,028 KB
testcase_15 AC 124 ms
41,632 KB
testcase_16 AC 189 ms
43,352 KB
testcase_17 AC 213 ms
44,100 KB
testcase_18 AC 188 ms
43,576 KB
testcase_19 AC 216 ms
43,488 KB
testcase_20 AC 110 ms
41,224 KB
testcase_21 AC 103 ms
40,924 KB
testcase_22 AC 120 ms
41,320 KB
testcase_23 AC 105 ms
39,956 KB
testcase_24 AC 126 ms
41,324 KB
testcase_25 AC 131 ms
40,464 KB
testcase_26 AC 118 ms
41,360 KB
testcase_27 AC 119 ms
41,360 KB
testcase_28 AC 115 ms
41,472 KB
testcase_29 AC 170 ms
41,800 KB
testcase_30 AC 157 ms
40,960 KB
testcase_31 AC 130 ms
41,184 KB
testcase_32 AC 116 ms
41,032 KB
testcase_33 AC 120 ms
41,316 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