結果

問題 No.5 数字のブロック
ユーザー masuyuumasuyuu
提出日時 2020-09-17 21:26:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 75,660 KB
実行使用メモリ 58,928 KB
最終ジャッジ日時 2024-06-22 06:52:36
合計ジャッジ時間 9,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,000 KB
testcase_01 AC 106 ms
52,920 KB
testcase_02 AC 113 ms
54,032 KB
testcase_03 AC 234 ms
58,212 KB
testcase_04 AC 216 ms
57,552 KB
testcase_05 AC 247 ms
58,356 KB
testcase_06 AC 225 ms
58,048 KB
testcase_07 AC 225 ms
57,268 KB
testcase_08 AC 236 ms
57,708 KB
testcase_09 AC 195 ms
56,644 KB
testcase_10 AC 256 ms
58,828 KB
testcase_11 AC 224 ms
57,340 KB
testcase_12 AC 223 ms
58,352 KB
testcase_13 AC 247 ms
58,032 KB
testcase_14 AC 134 ms
54,128 KB
testcase_15 AC 147 ms
53,828 KB
testcase_16 AC 251 ms
58,720 KB
testcase_17 AC 261 ms
58,928 KB
testcase_18 AC 267 ms
58,732 KB
testcase_19 AC 264 ms
58,924 KB
testcase_20 AC 121 ms
54,056 KB
testcase_21 AC 120 ms
54,032 KB
testcase_22 AC 119 ms
53,836 KB
testcase_23 AC 109 ms
52,964 KB
testcase_24 AC 152 ms
54,144 KB
testcase_25 AC 166 ms
54,240 KB
testcase_26 AC 120 ms
53,800 KB
testcase_27 AC 123 ms
53,812 KB
testcase_28 AC 108 ms
52,864 KB
testcase_29 AC 221 ms
57,624 KB
testcase_30 AC 190 ms
56,652 KB
testcase_31 AC 113 ms
53,904 KB
testcase_32 AC 105 ms
54,104 KB
testcase_33 AC 115 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

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 && cnt!=h) {
			sum+=a.get(g);
			if(sum<=c) {
				cnt++;
			}
			g++;
		}
		System.out.println(cnt);
	}
}
0