結果

問題 No.5 数字のブロック
ユーザー gomagoma
提出日時 2017-09-23 12:57:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 56,200 KB
最終ジャッジ日時 2024-04-26 15:30:57
合計ジャッジ時間 9,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,988 KB
testcase_01 AC 125 ms
41,420 KB
testcase_02 WA -
testcase_03 AC 240 ms
46,972 KB
testcase_04 AC 215 ms
45,692 KB
testcase_05 AC 239 ms
47,476 KB
testcase_06 AC 214 ms
46,716 KB
testcase_07 AC 208 ms
45,652 KB
testcase_08 AC 234 ms
46,656 KB
testcase_09 AC 200 ms
43,632 KB
testcase_10 AC 256 ms
47,368 KB
testcase_11 AC 214 ms
46,288 KB
testcase_12 AC 236 ms
46,556 KB
testcase_13 AC 243 ms
47,252 KB
testcase_14 AC 132 ms
41,580 KB
testcase_15 AC 151 ms
41,800 KB
testcase_16 AC 242 ms
47,196 KB
testcase_17 AC 259 ms
47,416 KB
testcase_18 AC 258 ms
47,160 KB
testcase_19 AC 261 ms
47,484 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 124 ms
41,228 KB
testcase_24 AC 152 ms
41,812 KB
testcase_25 AC 168 ms
41,904 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 212 ms
45,700 KB
testcase_30 AC 196 ms
43,932 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 < w.length; i++) {
			w[i] = sc.nextInt();
		}
		Arrays.sort(w);
		for (int i = 0; i < n; i++) {
			l -= w[i];
			if (l < 0) {
				System.out.println(i);
				break;
			}
		}
	}
}
0