結果

問題 No.5 数字のブロック
ユーザー shinshin
提出日時 2022-05-12 18:24:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 5,445 ms
コンパイル使用メモリ 79,844 KB
実行使用メモリ 47,936 KB
最終ジャッジ日時 2024-07-20 12:22:56
合計ジャッジ時間 9,702 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,948 KB
testcase_01 AC 94 ms
40,092 KB
testcase_02 AC 109 ms
41,248 KB
testcase_03 AC 191 ms
44,152 KB
testcase_04 AC 180 ms
43,976 KB
testcase_05 AC 199 ms
47,096 KB
testcase_06 AC 179 ms
43,848 KB
testcase_07 AC 179 ms
43,724 KB
testcase_08 AC 187 ms
45,064 KB
testcase_09 AC 147 ms
42,852 KB
testcase_10 AC 220 ms
46,788 KB
testcase_11 AC 197 ms
43,964 KB
testcase_12 AC 193 ms
45,428 KB
testcase_13 AC 199 ms
47,068 KB
testcase_14 AC 114 ms
41,212 KB
testcase_15 AC 118 ms
41,400 KB
testcase_16 AC 198 ms
46,440 KB
testcase_17 AC 226 ms
47,936 KB
testcase_18 AC 209 ms
46,640 KB
testcase_19 AC 220 ms
46,936 KB
testcase_20 AC 111 ms
41,536 KB
testcase_21 AC 106 ms
40,608 KB
testcase_22 AC 99 ms
40,108 KB
testcase_23 AC 98 ms
40,140 KB
testcase_24 AC 133 ms
41,372 KB
testcase_25 AC 145 ms
41,352 KB
testcase_26 AC 110 ms
41,020 KB
testcase_27 AC 111 ms
40,952 KB
testcase_28 AC 109 ms
41,068 KB
testcase_29 AC 177 ms
43,736 KB
testcase_30 AC 163 ms
42,896 KB
testcase_31 AC 110 ms
41,332 KB
testcase_32 AC 100 ms
39,896 KB
testcase_33 AC 97 ms
39,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class No5 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		ArrayList<Integer> W = new ArrayList<>();
		int L = Integer.parseInt(s.nextLine()),N = Integer.parseInt(s.nextLine()),i = 0,count = 0;
		for(i = 0;i < N;i++) {
			W.add(Integer.parseInt(s.next()));
		}
		s.close();
		
		i = 0;
		Collections.sort(W);
		
		for(int w : W) {
			L = L - w;
			if(L < 0) {
				break;
			}else {
				i++;
			}
		}

		System.out.println(i);
	}

}
0