結果

問題 No.5 数字のブロック
ユーザー kazapyon27kazapyon27
提出日時 2017-05-07 17:06:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 58,604 KB
最終ジャッジ日時 2024-09-14 14:49:15
合計ジャッジ時間 11,392 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,244 KB
testcase_01 AC 135 ms
53,948 KB
testcase_02 AC 133 ms
54,132 KB
testcase_03 AC 241 ms
57,848 KB
testcase_04 AC 224 ms
57,568 KB
testcase_05 AC 244 ms
58,148 KB
testcase_06 AC 231 ms
57,412 KB
testcase_07 AC 227 ms
57,256 KB
testcase_08 AC 238 ms
57,688 KB
testcase_09 AC 207 ms
57,204 KB
testcase_10 AC 255 ms
58,380 KB
testcase_11 AC 215 ms
57,508 KB
testcase_12 AC 237 ms
57,528 KB
testcase_13 AC 246 ms
57,960 KB
testcase_14 AC 147 ms
54,288 KB
testcase_15 AC 161 ms
54,044 KB
testcase_16 AC 250 ms
57,640 KB
testcase_17 AC 262 ms
58,200 KB
testcase_18 AC 253 ms
58,604 KB
testcase_19 AC 267 ms
58,288 KB
testcase_20 WA -
testcase_21 AC 134 ms
54,272 KB
testcase_22 AC 134 ms
53,868 KB
testcase_23 AC 134 ms
53,772 KB
testcase_24 AC 161 ms
54,444 KB
testcase_25 AC 182 ms
54,616 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 212 ms
57,408 KB
testcase_30 AC 207 ms
56,768 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
				}else if(box_width<0){
					count-=1;
					break;
				}
			}
			System.out.println(count);
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0