結果

問題 No.5 数字のブロック
ユーザー metasequometasequo
提出日時 2015-05-10 22:46:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 396 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 47,528 KB
最終ジャッジ日時 2024-07-05 22:07:35
合計ジャッジ時間 10,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,220 KB
testcase_01 AC 128 ms
41,116 KB
testcase_02 RE -
testcase_03 AC 233 ms
46,804 KB
testcase_04 AC 214 ms
45,468 KB
testcase_05 AC 253 ms
47,236 KB
testcase_06 AC 227 ms
45,792 KB
testcase_07 AC 220 ms
45,584 KB
testcase_08 AC 234 ms
46,564 KB
testcase_09 AC 192 ms
43,452 KB
testcase_10 AC 252 ms
46,640 KB
testcase_11 AC 219 ms
45,992 KB
testcase_12 AC 238 ms
46,576 KB
testcase_13 AC 243 ms
46,808 KB
testcase_14 AC 137 ms
41,532 KB
testcase_15 AC 154 ms
41,716 KB
testcase_16 AC 250 ms
46,668 KB
testcase_17 AC 254 ms
47,088 KB
testcase_18 AC 266 ms
47,008 KB
testcase_19 AC 261 ms
47,528 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 121 ms
41,516 KB
testcase_24 AC 156 ms
41,840 KB
testcase_25 AC 168 ms
42,076 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 204 ms
45,588 KB
testcase_30 AC 190 ms
43,716 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main5{
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int L = scan.nextInt(), N = scan.nextInt(), W[] = new int[10001];
		for(int i = 0; i < N; i++)	W[i] = scan.nextInt();

		Arrays.sort(W, 0, N);
		int i = 0;
		do{
			L -= W[i];
			i++;
		}while(L - W[i] >= 0);

		System.out.println(i);
	}
}
0