結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 02:09:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 58,940 KB
最終ジャッジ日時 2024-10-02 05:42:15
合計ジャッジ時間 13,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,040 KB
testcase_01 AC 133 ms
54,076 KB
testcase_02 AC 131 ms
54,264 KB
testcase_03 AC 355 ms
58,536 KB
testcase_04 AC 306 ms
58,636 KB
testcase_05 AC 385 ms
58,724 KB
testcase_06 AC 326 ms
58,760 KB
testcase_07 AC 330 ms
58,648 KB
testcase_08 AC 342 ms
58,940 KB
testcase_09 AC 228 ms
56,856 KB
testcase_10 AC 405 ms
58,780 KB
testcase_11 AC 293 ms
58,692 KB
testcase_12 AC 356 ms
58,660 KB
testcase_13 AC 391 ms
58,648 KB
testcase_14 AC 148 ms
54,136 KB
testcase_15 AC 154 ms
54,264 KB
testcase_16 AC 395 ms
58,548 KB
testcase_17 AC 435 ms
58,796 KB
testcase_18 AC 428 ms
58,540 KB
testcase_19 AC 463 ms
58,740 KB
testcase_20 WA -
testcase_21 AC 138 ms
54,256 KB
testcase_22 AC 134 ms
54,064 KB
testcase_23 AC 132 ms
53,828 KB
testcase_24 AC 166 ms
54,180 KB
testcase_25 AC 194 ms
54,476 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 311 ms
58,676 KB
testcase_30 AC 240 ms
56,832 KB
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;
				}
			}
		}
		int cnt=0;
		for(int i=0;i<N;i++){
			bigboxL-=blockarray[i];
			if(bigboxL>=0)cnt++;
			if(bigboxL<=0){
				System.out.println(cnt);
				break;
			}else if(bigboxL<0){
				System.out.println(cnt);
				break;
			}

		}
	}
}
0