結果

問題 No.5 数字のブロック
ユーザー oyafusooyafuso
提出日時 2019-03-11 17:53:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 949 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 76,860 KB
実行使用メモリ 43,980 KB
最終ジャッジ日時 2024-06-23 15:38:52
合計ジャッジ時間 8,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,208 KB
testcase_01 AC 115 ms
41,352 KB
testcase_02 WA -
testcase_03 AC 183 ms
42,844 KB
testcase_04 AC 172 ms
41,980 KB
testcase_05 WA -
testcase_06 AC 174 ms
43,324 KB
testcase_07 AC 161 ms
42,212 KB
testcase_08 AC 189 ms
42,928 KB
testcase_09 AC 138 ms
41,196 KB
testcase_10 AC 203 ms
43,980 KB
testcase_11 AC 162 ms
42,600 KB
testcase_12 AC 198 ms
42,804 KB
testcase_13 AC 204 ms
43,680 KB
testcase_14 AC 114 ms
41,080 KB
testcase_15 WA -
testcase_16 AC 202 ms
43,640 KB
testcase_17 AC 210 ms
43,672 KB
testcase_18 AC 213 ms
43,816 KB
testcase_19 AC 224 ms
43,848 KB
testcase_20 AC 116 ms
41,180 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 121 ms
41,308 KB
testcase_24 AC 110 ms
40,296 KB
testcase_25 AC 127 ms
41,080 KB
testcase_26 AC 119 ms
41,172 KB
testcase_27 AC 110 ms
41,368 KB
testcase_28 AC 110 ms
41,312 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 112 ms
41,220 KB
testcase_32 AC 114 ms
40,788 KB
testcase_33 AC 114 ms
41,304 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