結果

問題 No.5 数字のブロック
ユーザー barrett114514barrett114514
提出日時 2017-07-21 22:54:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 3,724 ms
コンパイル使用メモリ 75,064 KB
実行使用メモリ 47,652 KB
最終ジャッジ日時 2024-10-09 03:44:31
合計ジャッジ時間 11,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,240 KB
testcase_01 AC 131 ms
41,048 KB
testcase_02 WA -
testcase_03 AC 242 ms
46,296 KB
testcase_04 AC 225 ms
45,504 KB
testcase_05 WA -
testcase_06 AC 234 ms
46,160 KB
testcase_07 AC 230 ms
45,684 KB
testcase_08 AC 247 ms
46,356 KB
testcase_09 AC 200 ms
43,060 KB
testcase_10 AC 259 ms
47,380 KB
testcase_11 AC 222 ms
46,220 KB
testcase_12 AC 248 ms
46,660 KB
testcase_13 AC 257 ms
47,088 KB
testcase_14 AC 143 ms
41,344 KB
testcase_15 WA -
testcase_16 AC 259 ms
46,776 KB
testcase_17 AC 274 ms
47,280 KB
testcase_18 AC 273 ms
47,524 KB
testcase_19 AC 279 ms
47,652 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 129 ms
40,792 KB
testcase_24 AC 161 ms
41,964 KB
testcase_25 AC 175 ms
41,808 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class NumberBlocks {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt();
		int N = sc.nextInt();
		int W[] = new int[N];
		
		for(int i = 0;i < N; i++){
			W[i] = sc.nextInt();
		}
		Arrays.sort(W);
		
		for(int i = 0;L > 0; i ++){
			L -= W[i];
			
			if(L < 0){
				if(i < 0){
				i --;
				}
				
				System.out.println(i);
				break;
			}
		}

	}

}
0