結果

問題 No.5 数字のブロック
ユーザー masuyuumasuyuu
提出日時 2020-09-17 21:15:08
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 532 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 75,780 KB
実行使用メモリ 58,852 KB
最終ジャッジ日時 2024-06-22 06:50:49
合計ジャッジ時間 9,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,956 KB
testcase_01 AC 105 ms
52,776 KB
testcase_02 AC 103 ms
52,888 KB
testcase_03 AC 222 ms
58,348 KB
testcase_04 AC 204 ms
57,476 KB
testcase_05 AC 233 ms
57,856 KB
testcase_06 AC 207 ms
58,172 KB
testcase_07 AC 204 ms
57,548 KB
testcase_08 AC 219 ms
58,184 KB
testcase_09 AC 177 ms
56,792 KB
testcase_10 AC 243 ms
58,592 KB
testcase_11 AC 209 ms
57,524 KB
testcase_12 AC 221 ms
58,208 KB
testcase_13 AC 232 ms
58,352 KB
testcase_14 AC 124 ms
54,020 KB
testcase_15 AC 137 ms
54,200 KB
testcase_16 AC 243 ms
58,436 KB
testcase_17 AC 252 ms
58,844 KB
testcase_18 AC 246 ms
58,616 KB
testcase_19 AC 256 ms
58,852 KB
testcase_20 RE -
testcase_21 AC 113 ms
53,948 KB
testcase_22 AC 118 ms
53,836 KB
testcase_23 AC 115 ms
53,700 KB
testcase_24 AC 139 ms
53,904 KB
testcase_25 AC 155 ms
53,884 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 211 ms
58,032 KB
testcase_30 AC 179 ms
56,552 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
public class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int c = sc.nextInt();
		int h = sc.nextInt();
		List<Integer> a = new ArrayList<>();
		for(int i=0;i<h;i++) {
			int x = sc.nextInt();
			a.add(x);
		}
		Collections.sort(a);
		int sum =0;
		int cnt=0;
		int g=0;
		while(sum<c) {
			sum+=a.get(g);
			if(sum<=c) {
				cnt++;
			}
			g++;
		}
		System.out.println(cnt);
	}
}
0