結果

問題 No.5 数字のブロック
ユーザー ぴろずぴろず
提出日時 2014-12-21 00:54:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 47,692 KB
最終ジャッジ日時 2024-06-12 02:50:03
合計ジャッジ時間 8,849 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,460 KB
testcase_01 AC 118 ms
41,368 KB
testcase_02 WA -
testcase_03 AC 215 ms
46,000 KB
testcase_04 AC 185 ms
45,696 KB
testcase_05 AC 231 ms
47,172 KB
testcase_06 AC 214 ms
46,064 KB
testcase_07 AC 213 ms
45,680 KB
testcase_08 AC 223 ms
46,400 KB
testcase_09 AC 182 ms
43,672 KB
testcase_10 AC 227 ms
46,836 KB
testcase_11 AC 211 ms
45,996 KB
testcase_12 AC 231 ms
46,696 KB
testcase_13 AC 235 ms
46,216 KB
testcase_14 AC 132 ms
41,408 KB
testcase_15 AC 139 ms
41,792 KB
testcase_16 AC 233 ms
46,464 KB
testcase_17 AC 255 ms
47,352 KB
testcase_18 AC 241 ms
47,052 KB
testcase_19 AC 234 ms
47,692 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 117 ms
41,424 KB
testcase_24 AC 144 ms
41,784 KB
testcase_25 AC 157 ms
42,164 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 189 ms
45,804 KB
testcase_30 AC 180 ms
43,980 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no005;

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

public class Main {

	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);
		int ans = 0;
		int sum = 0;
		if (w[0] > l) {
			System.out.println(0);
			return;
		}
		for(int i=0;i<n;i++) {
			sum += w[i];
			if (sum > l) {
				System.out.println(i);
				return;
			}
		}
	}

}
0