結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 02:19:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 440 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 3,340 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 47,624 KB
最終ジャッジ日時 2024-04-29 07:06:33
合計ジャッジ時間 12,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,268 KB
testcase_01 AC 125 ms
41,452 KB
testcase_02 AC 114 ms
41,272 KB
testcase_03 AC 336 ms
46,760 KB
testcase_04 AC 286 ms
46,888 KB
testcase_05 AC 381 ms
47,300 KB
testcase_06 AC 319 ms
46,976 KB
testcase_07 AC 301 ms
46,984 KB
testcase_08 AC 333 ms
46,864 KB
testcase_09 AC 234 ms
43,476 KB
testcase_10 AC 411 ms
47,588 KB
testcase_11 AC 314 ms
46,852 KB
testcase_12 AC 344 ms
47,012 KB
testcase_13 AC 372 ms
47,124 KB
testcase_14 AC 143 ms
41,356 KB
testcase_15 AC 144 ms
41,368 KB
testcase_16 AC 385 ms
47,076 KB
testcase_17 AC 425 ms
47,624 KB
testcase_18 AC 431 ms
47,524 KB
testcase_19 AC 440 ms
47,408 KB
testcase_20 AC 130 ms
41,196 KB
testcase_21 AC 114 ms
41,604 KB
testcase_22 AC 123 ms
41,268 KB
testcase_23 AC 118 ms
40,028 KB
testcase_24 AC 147 ms
41,220 KB
testcase_25 AC 177 ms
42,180 KB
testcase_26 AC 123 ms
41,164 KB
testcase_27 AC 107 ms
41,132 KB
testcase_28 AC 125 ms
41,164 KB
testcase_29 AC 305 ms
47,012 KB
testcase_30 AC 230 ms
44,096 KB
testcase_31 AC 127 ms
41,156 KB
testcase_32 AC 127 ms
41,280 KB
testcase_33 AC 126 ms
41,380 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++){
			blockarray[i]=sc.nextInt();
		}
		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)break;
			cnt++;
		}
		System.out.println(cnt);
	}
}
0