結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 02:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 5,000 ms
コード長 863 bytes
コンパイル時間 3,458 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 47,548 KB
最終ジャッジ日時 2024-04-29 07:06:01
合計ジャッジ時間 13,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,208 KB
testcase_01 AC 129 ms
41,184 KB
testcase_02 AC 133 ms
41,276 KB
testcase_03 AC 353 ms
46,948 KB
testcase_04 AC 312 ms
46,872 KB
testcase_05 AC 393 ms
46,860 KB
testcase_06 AC 326 ms
46,912 KB
testcase_07 AC 271 ms
45,668 KB
testcase_08 AC 344 ms
46,672 KB
testcase_09 AC 228 ms
43,224 KB
testcase_10 AC 416 ms
47,548 KB
testcase_11 AC 297 ms
46,776 KB
testcase_12 AC 353 ms
46,860 KB
testcase_13 AC 383 ms
46,748 KB
testcase_14 AC 144 ms
41,468 KB
testcase_15 AC 156 ms
41,580 KB
testcase_16 AC 407 ms
47,060 KB
testcase_17 AC 475 ms
47,396 KB
testcase_18 AC 436 ms
47,472 KB
testcase_19 AC 456 ms
47,228 KB
testcase_20 AC 129 ms
40,844 KB
testcase_21 AC 129 ms
41,084 KB
testcase_22 AC 129 ms
41,128 KB
testcase_23 AC 129 ms
41,360 KB
testcase_24 AC 162 ms
41,400 KB
testcase_25 AC 192 ms
41,992 KB
testcase_26 AC 130 ms
41,356 KB
testcase_27 AC 129 ms
40,900 KB
testcase_28 AC 130 ms
41,284 KB
testcase_29 AC 310 ms
46,928 KB
testcase_30 AC 242 ms
43,728 KB
testcase_31 AC 132 ms
41,556 KB
testcase_32 AC 131 ms
41,236 KB
testcase_33 AC 128 ms
40,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class no5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int bigboxL=sc.nextInt();
		int N=sc.nextInt();
		int[] blockarray = new int[N];
		for(int i=0;i<N;i++){
			int blockW=sc.nextInt();
			blockarray[i]=blockW;
		}
		for(int i=0;i<blockarray.length;i++){
			for(int j=i+1;j<blockarray.length;j++){
				if(blockarray[i]>=blockarray[j]){
					int swap=blockarray[i];
					blockarray[i]=blockarray[j];
					blockarray[j]=swap;
				}
			}
		}
		int cnt=0;
		boolean flag=false;
		for(int i=0;i<N;i++){
			bigboxL-=blockarray[i];
			if(bigboxL>=0)cnt++;
			if(bigboxL<=0){
				flag=false;
				System.out.println(cnt);
				break;
			}else if(bigboxL<0){
				flag=false;
				System.out.println(cnt);
				break;
			}else{
				flag=true;
			}
		}
		if(flag){
			System.out.println(cnt);
		}
	}
}
0