結果

問題 No.5 数字のブロック
ユーザー masuyuumasuyuu
提出日時 2020-09-17 21:13:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 3,986 ms
コンパイル使用メモリ 76,200 KB
実行使用メモリ 59,092 KB
最終ジャッジ日時 2024-06-22 06:50:32
合計ジャッジ時間 9,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,196 KB
testcase_01 AC 98 ms
53,072 KB
testcase_02 WA -
testcase_03 AC 228 ms
58,912 KB
testcase_04 AC 207 ms
57,728 KB
testcase_05 WA -
testcase_06 AC 218 ms
58,348 KB
testcase_07 AC 199 ms
57,844 KB
testcase_08 AC 216 ms
58,432 KB
testcase_09 AC 189 ms
56,988 KB
testcase_10 AC 230 ms
58,632 KB
testcase_11 AC 193 ms
57,616 KB
testcase_12 AC 226 ms
58,368 KB
testcase_13 AC 236 ms
58,740 KB
testcase_14 AC 120 ms
53,880 KB
testcase_15 WA -
testcase_16 AC 226 ms
58,480 KB
testcase_17 AC 259 ms
58,852 KB
testcase_18 AC 262 ms
58,268 KB
testcase_19 AC 269 ms
59,092 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 109 ms
53,116 KB
testcase_24 AC 141 ms
54,320 KB
testcase_25 AC 164 ms
54,408 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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