結果

問題 No.5 数字のブロック
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 17:21:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 3,211 ms
コンパイル使用メモリ 75,408 KB
実行使用メモリ 58,548 KB
最終ジャッジ日時 2024-11-18 11:02:46
合計ジャッジ時間 10,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,316 KB
testcase_01 AC 131 ms
54,124 KB
testcase_02 AC 138 ms
54,172 KB
testcase_03 AC 235 ms
57,676 KB
testcase_04 AC 216 ms
57,192 KB
testcase_05 AC 239 ms
57,476 KB
testcase_06 AC 220 ms
57,552 KB
testcase_07 AC 214 ms
57,592 KB
testcase_08 AC 226 ms
57,400 KB
testcase_09 AC 197 ms
56,724 KB
testcase_10 AC 248 ms
58,304 KB
testcase_11 AC 215 ms
57,432 KB
testcase_12 AC 234 ms
57,604 KB
testcase_13 AC 253 ms
57,896 KB
testcase_14 AC 148 ms
54,288 KB
testcase_15 AC 162 ms
54,384 KB
testcase_16 AC 246 ms
58,152 KB
testcase_17 AC 260 ms
57,748 KB
testcase_18 AC 257 ms
58,548 KB
testcase_19 AC 259 ms
57,924 KB
testcase_20 AC 131 ms
54,176 KB
testcase_21 AC 128 ms
54,032 KB
testcase_22 AC 132 ms
54,404 KB
testcase_23 AC 129 ms
54,136 KB
testcase_24 AC 164 ms
54,556 KB
testcase_25 AC 175 ms
54,648 KB
testcase_26 AC 130 ms
54,016 KB
testcase_27 AC 132 ms
53,936 KB
testcase_28 AC 134 ms
54,124 KB
testcase_29 AC 219 ms
57,332 KB
testcase_30 AC 198 ms
56,404 KB
testcase_31 AC 131 ms
54,316 KB
testcase_32 AC 130 ms
54,192 KB
testcase_33 AC 132 ms
54,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.5 数字のブロック*/
import java.util.*;
public class No5 {
	public static void main(String[] args) {
		short box_width,block_quantity,count;		
		try(Scanner input = new Scanner(System.in)){
			box_width=input.nextShort();
			block_quantity=input.nextShort();
			short block_width[]= new short[block_quantity];
			for(int i=0;i<block_quantity;i++){
				block_width[i]=input.nextShort();
			}
			Arrays.sort(block_width);
			for(count=1;count<=block_quantity;count++){
				box_width-=block_width[count-1];
				if(box_width<0){
					break;
				}
			}
			System.out.println(count-1);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0