結果

問題 No.5 数字のブロック
ユーザー hnthnt
提出日時 2016-03-28 02:19:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 426 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 3,140 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 58,924 KB
最終ジャッジ日時 2024-11-18 08:27:12
合計ジャッジ時間 11,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,236 KB
testcase_01 AC 121 ms
53,896 KB
testcase_02 AC 121 ms
54,160 KB
testcase_03 AC 325 ms
58,704 KB
testcase_04 AC 280 ms
58,608 KB
testcase_05 AC 366 ms
58,824 KB
testcase_06 AC 305 ms
58,772 KB
testcase_07 AC 304 ms
58,824 KB
testcase_08 AC 322 ms
58,824 KB
testcase_09 AC 216 ms
56,780 KB
testcase_10 AC 378 ms
58,856 KB
testcase_11 AC 292 ms
58,768 KB
testcase_12 AC 313 ms
58,924 KB
testcase_13 AC 342 ms
58,784 KB
testcase_14 AC 133 ms
53,968 KB
testcase_15 AC 150 ms
54,340 KB
testcase_16 AC 351 ms
58,688 KB
testcase_17 AC 406 ms
58,852 KB
testcase_18 AC 381 ms
58,812 KB
testcase_19 AC 426 ms
58,892 KB
testcase_20 AC 120 ms
54,084 KB
testcase_21 AC 107 ms
52,712 KB
testcase_22 AC 106 ms
52,936 KB
testcase_23 AC 119 ms
53,956 KB
testcase_24 AC 153 ms
54,228 KB
testcase_25 AC 179 ms
54,460 KB
testcase_26 AC 120 ms
54,012 KB
testcase_27 AC 108 ms
53,028 KB
testcase_28 AC 107 ms
52,976 KB
testcase_29 AC 282 ms
58,488 KB
testcase_30 AC 214 ms
56,932 KB
testcase_31 AC 123 ms
53,868 KB
testcase_32 AC 108 ms
52,788 KB
testcase_33 AC 122 ms
53,988 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