結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 02:14:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 393 ms / 5,000 ms
コード長 863 bytes
コンパイル時間 2,883 ms
コンパイル使用メモリ 77,464 KB
実行使用メモリ 56,872 KB
最終ジャッジ日時 2024-11-18 08:26:41
合計ジャッジ時間 10,883 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
50,228 KB
testcase_01 AC 123 ms
51,924 KB
testcase_02 AC 118 ms
49,932 KB
testcase_03 AC 308 ms
54,308 KB
testcase_04 AC 265 ms
56,440 KB
testcase_05 AC 342 ms
56,592 KB
testcase_06 AC 277 ms
54,576 KB
testcase_07 AC 251 ms
56,464 KB
testcase_08 AC 297 ms
56,636 KB
testcase_09 AC 190 ms
53,312 KB
testcase_10 AC 346 ms
56,872 KB
testcase_11 AC 257 ms
54,456 KB
testcase_12 AC 299 ms
54,532 KB
testcase_13 AC 322 ms
54,324 KB
testcase_14 AC 120 ms
51,968 KB
testcase_15 AC 130 ms
52,248 KB
testcase_16 AC 350 ms
56,668 KB
testcase_17 AC 375 ms
54,308 KB
testcase_18 AC 366 ms
54,372 KB
testcase_19 AC 393 ms
54,424 KB
testcase_20 AC 110 ms
49,936 KB
testcase_21 AC 105 ms
52,148 KB
testcase_22 AC 107 ms
52,080 KB
testcase_23 AC 94 ms
50,548 KB
testcase_24 AC 129 ms
51,956 KB
testcase_25 AC 154 ms
50,600 KB
testcase_26 AC 110 ms
52,056 KB
testcase_27 AC 102 ms
51,912 KB
testcase_28 AC 100 ms
50,692 KB
testcase_29 AC 271 ms
56,536 KB
testcase_30 AC 194 ms
51,504 KB
testcase_31 AC 100 ms
49,916 KB
testcase_32 AC 108 ms
51,880 KB
testcase_33 AC 97 ms
50,932 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