結果

問題 No.5 数字のブロック
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-04 15:25:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 71,828 KB
実行使用メモリ 61,688 KB
最終ジャッジ日時 2023-08-16 13:46:00
合計ジャッジ時間 9,525 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 121 ms
56,112 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 120 ms
55,448 KB
testcase_21 AC 121 ms
55,708 KB
testcase_22 AC 119 ms
55,952 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 118 ms
55,700 KB
testcase_27 AC 117 ms
56,140 KB
testcase_28 AC 119 ms
55,488 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 118 ms
55,512 KB
testcase_32 AC 120 ms
56,400 KB
testcase_33 AC 119 ms
55,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class Question005
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int width = scan.nextInt();
		int num = scan.nextInt();
		int block[] = new int[num];
		
		for(int i=0; i<num; i++){
			block[i] = scan.nextInt();

		}
		
		Arrays.sort(block);
		
		int cnt=0;
		
		for(int i=0; i<num; i++){
			width = width - block[i];
			if(width <= 0){
				cnt++;
				continue;
			}
			cnt++;
		}
		
		System.out.println(cnt);
	}
}
0