結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,792 KB
testcase_01 AC 105 ms
53,788 KB
testcase_02 AC 106 ms
54,032 KB
testcase_03 AC 198 ms
58,380 KB
testcase_04 AC 180 ms
57,356 KB
testcase_05 AC 208 ms
59,268 KB
testcase_06 AC 188 ms
57,840 KB
testcase_07 AC 184 ms
57,444 KB
testcase_08 AC 198 ms
57,692 KB
testcase_09 AC 165 ms
56,820 KB
testcase_10 AC 229 ms
59,028 KB
testcase_11 AC 186 ms
57,556 KB
testcase_12 AC 205 ms
58,220 KB
testcase_13 AC 210 ms
58,476 KB
testcase_14 AC 115 ms
54,120 KB
testcase_15 AC 122 ms
54,184 KB
testcase_16 AC 213 ms
58,756 KB
testcase_17 AC 216 ms
58,748 KB
testcase_18 AC 216 ms
59,012 KB
testcase_19 AC 219 ms
58,980 KB
testcase_20 AC 96 ms
52,960 KB
testcase_21 AC 95 ms
53,116 KB
testcase_22 AC 103 ms
53,840 KB
testcase_23 AC 104 ms
54,076 KB
testcase_24 AC 121 ms
53,852 KB
testcase_25 AC 146 ms
54,212 KB
testcase_26 AC 99 ms
53,636 KB
testcase_27 AC 105 ms
54,020 KB
testcase_28 AC 103 ms
54,096 KB
testcase_29 AC 181 ms
57,640 KB
testcase_30 AC 166 ms
56,808 KB
testcase_31 AC 102 ms
53,856 KB
testcase_32 AC 93 ms
52,968 KB
testcase_33 AC 102 ms
54,132 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();
		}
		System.out.println(cnt(widthOfBlk, length));
	}
	
	static int cnt(int[] w, int l){
		int cnt = 0;
		Arrays.sort(w);
		for(int w1 : w){
			int tmp = l - w1;
			if(tmp >= 0){
				l = tmp;
				cnt++;
			}
		}
		return cnt;
	}
}
0