結果

問題 No.5 数字のブロック
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 21:22:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 75,888 KB
実行使用メモリ 58,728 KB
最終ジャッジ日時 2024-07-01 14:38:37
合計ジャッジ時間 10,042 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,284 KB
testcase_01 AC 117 ms
40,104 KB
testcase_02 WA -
testcase_03 AC 255 ms
46,792 KB
testcase_04 AC 224 ms
46,416 KB
testcase_05 WA -
testcase_06 AC 242 ms
46,428 KB
testcase_07 AC 230 ms
46,168 KB
testcase_08 AC 241 ms
45,844 KB
testcase_09 AC 207 ms
43,288 KB
testcase_10 AC 270 ms
47,708 KB
testcase_11 AC 233 ms
46,248 KB
testcase_12 AC 252 ms
46,068 KB
testcase_13 AC 261 ms
46,228 KB
testcase_14 AC 144 ms
41,164 KB
testcase_15 WA -
testcase_16 AC 271 ms
47,716 KB
testcase_17 AC 288 ms
47,372 KB
testcase_18 AC 288 ms
47,528 KB
testcase_19 AC 286 ms
48,420 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 132 ms
41,016 KB
testcase_24 AC 159 ms
41,548 KB
testcase_25 AC 184 ms
41,776 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.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int haba = sc.nextInt(),num = sc.nextInt();
		ArrayList <Integer> list = new ArrayList<Integer>();
		
		for(int i = 0 ; i < num ; i++)list.add(sc.nextInt());
		Collections.sort(list);
		int count = 0 , kosu = 0;
		
		while(count < haba) {
			count += list.get(kosu);
			kosu++;
		}
		
		System.out.println(kosu - 1);
		
	}
}
0