結果

問題 No.5 数字のブロック
ユーザー omc-testomc-test
提出日時 2016-08-03 13:05:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 47,852 KB
最終ジャッジ日時 2024-11-06 23:42:27
合計ジャッジ時間 10,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,240 KB
testcase_01 AC 133 ms
41,412 KB
testcase_02 WA -
testcase_03 AC 262 ms
46,276 KB
testcase_04 AC 244 ms
46,100 KB
testcase_05 WA -
testcase_06 AC 258 ms
46,320 KB
testcase_07 AC 240 ms
46,008 KB
testcase_08 AC 252 ms
46,032 KB
testcase_09 AC 214 ms
43,776 KB
testcase_10 AC 280 ms
47,644 KB
testcase_11 AC 244 ms
45,936 KB
testcase_12 AC 253 ms
46,288 KB
testcase_13 AC 265 ms
46,520 KB
testcase_14 AC 145 ms
41,328 KB
testcase_15 WA -
testcase_16 AC 265 ms
46,776 KB
testcase_17 AC 290 ms
47,852 KB
testcase_18 AC 296 ms
47,548 KB
testcase_19 AC 299 ms
47,784 KB
testcase_20 AC 132 ms
41,412 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 132 ms
41,180 KB
testcase_24 AC 160 ms
41,712 KB
testcase_25 AC 181 ms
41,824 KB
testcase_26 AC 120 ms
40,240 KB
testcase_27 AC 132 ms
41,236 KB
testcase_28 AC 133 ms
41,292 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 134 ms
41,332 KB
testcase_32 AC 134 ms
41,304 KB
testcase_33 AC 132 ms
41,128 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 l = sc.nextInt();
		int n = sc.nextInt();
		List<Integer> w = new ArrayList<Integer>();
		for(int i=0; i<n; i++){
			w.add(sc.nextInt());
		}
		sc.close();
		Collections.sort(w);
		int sum = 0;
		int count;
		for(count = 0; count<w.size(); count++){
			if(l > sum + w.get(count)){
				sum = sum + w.get(count);
			}else{
				break;
			}
		}
		System.out.println(count);
	}
}
0