結果

問題 No.5 数字のブロック
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 00:48:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 453 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 59,060 KB
最終ジャッジ日時 2024-11-18 12:05:22
合計ジャッジ時間 9,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,956 KB
testcase_01 AC 113 ms
53,160 KB
testcase_02 AC 124 ms
53,904 KB
testcase_03 AC 230 ms
58,012 KB
testcase_04 AC 216 ms
57,148 KB
testcase_05 AC 245 ms
58,740 KB
testcase_06 AC 224 ms
57,900 KB
testcase_07 AC 205 ms
57,636 KB
testcase_08 AC 233 ms
58,408 KB
testcase_09 AC 189 ms
56,472 KB
testcase_10 AC 248 ms
58,232 KB
testcase_11 AC 208 ms
57,852 KB
testcase_12 AC 233 ms
58,484 KB
testcase_13 AC 251 ms
58,760 KB
testcase_14 AC 139 ms
54,184 KB
testcase_15 AC 157 ms
54,128 KB
testcase_16 AC 249 ms
58,784 KB
testcase_17 AC 257 ms
58,636 KB
testcase_18 AC 260 ms
58,936 KB
testcase_19 AC 259 ms
59,060 KB
testcase_20 AC 126 ms
54,204 KB
testcase_21 AC 117 ms
54,260 KB
testcase_22 AC 125 ms
53,916 KB
testcase_23 AC 123 ms
54,224 KB
testcase_24 AC 150 ms
54,312 KB
testcase_25 AC 186 ms
54,576 KB
testcase_26 AC 124 ms
53,992 KB
testcase_27 AC 125 ms
54,096 KB
testcase_28 AC 125 ms
54,316 KB
testcase_29 AC 202 ms
57,496 KB
testcase_30 AC 189 ms
56,828 KB
testcase_31 AC 126 ms
53,964 KB
testcase_32 AC 124 ms
54,240 KB
testcase_33 AC 128 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int L = sc.nextInt();
		int n = sc.nextInt();
		int[] ints = new int[n];
		for (int i=0; i<n; i++) {
			ints[i] = sc.nextInt();
		}
		Arrays.sort(ints);
		int count = 0;
		int length = 0;
		for (int i=0; i<n; i++) {
			length += ints[i];
			if (length <= L) {count++;}
			else {break;}
		}
		System.out.println(count);
	}
}
0