結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 01:46:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 3,582 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 58,860 KB
最終ジャッジ日時 2024-10-02 05:41:09
合計ジャッジ時間 12,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,008 KB
testcase_01 AC 133 ms
54,080 KB
testcase_02 WA -
testcase_03 AC 349 ms
58,708 KB
testcase_04 AC 310 ms
58,440 KB
testcase_05 WA -
testcase_06 AC 328 ms
58,716 KB
testcase_07 AC 299 ms
58,796 KB
testcase_08 AC 329 ms
58,644 KB
testcase_09 AC 225 ms
56,560 KB
testcase_10 AC 407 ms
58,768 KB
testcase_11 AC 301 ms
58,736 KB
testcase_12 AC 340 ms
58,764 KB
testcase_13 AC 383 ms
58,816 KB
testcase_14 AC 143 ms
54,312 KB
testcase_15 WA -
testcase_16 AC 394 ms
58,556 KB
testcase_17 AC 432 ms
58,800 KB
testcase_18 AC 420 ms
58,860 KB
testcase_19 AC 461 ms
58,808 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 131 ms
53,936 KB
testcase_24 AC 156 ms
54,336 KB
testcase_25 AC 185 ms
54,384 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
				}
			}
		}
		for(int i=0;i<N;i++){
			bigboxL-=blockarray[i];
			if(bigboxL<=0){
				System.out.println(i);
				break;
			}else if(bigboxL<0){
				System.out.println(i--);
				break;
			}

		}
	}
}
0