結果

問題 No.5 数字のブロック
ユーザー jimanojimano
提出日時 2015-12-27 16:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,708 ms
コンパイル使用メモリ 75,464 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-11-18 08:01:40
合計ジャッジ時間 8,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
54,112 KB
testcase_01 AC 94 ms
53,112 KB
testcase_02 AC 101 ms
54,020 KB
testcase_03 AC 201 ms
58,380 KB
testcase_04 AC 182 ms
57,436 KB
testcase_05 AC 206 ms
58,072 KB
testcase_06 AC 184 ms
57,836 KB
testcase_07 AC 181 ms
57,440 KB
testcase_08 AC 197 ms
58,444 KB
testcase_09 AC 171 ms
56,948 KB
testcase_10 AC 213 ms
58,056 KB
testcase_11 AC 181 ms
57,984 KB
testcase_12 AC 196 ms
58,636 KB
testcase_13 AC 204 ms
58,472 KB
testcase_14 AC 111 ms
53,656 KB
testcase_15 AC 122 ms
54,120 KB
testcase_16 AC 215 ms
58,628 KB
testcase_17 AC 221 ms
59,236 KB
testcase_18 AC 215 ms
58,696 KB
testcase_19 AC 215 ms
58,696 KB
testcase_20 AC 105 ms
54,052 KB
testcase_21 AC 103 ms
54,192 KB
testcase_22 AC 104 ms
53,944 KB
testcase_23 AC 105 ms
54,336 KB
testcase_24 AC 134 ms
54,460 KB
testcase_25 AC 151 ms
54,340 KB
testcase_26 AC 109 ms
54,016 KB
testcase_27 AC 96 ms
53,108 KB
testcase_28 AC 105 ms
53,884 KB
testcase_29 AC 183 ms
57,532 KB
testcase_30 AC 165 ms
56,568 KB
testcase_31 AC 100 ms
53,844 KB
testcase_32 AC 95 ms
52,812 KB
testcase_33 AC 105 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No05 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int length = sc.nextInt();
		int cntBlk = sc.nextInt();
		
		int[] widthOfBlk = new int[cntBlk];
		for(int i = 0; i < widthOfBlk.length; i++){
			widthOfBlk[i] =  sc.nextInt();
		}

		int cnt = 0;
		Arrays.sort(widthOfBlk);		
		for(int w : widthOfBlk){
			int tmp = length - w;
			if(tmp >= 0){
				length = tmp;
				cnt++;
			}
		}		
		System.out.println(cnt);
	}
}
0