結果

問題 No.5 数字のブロック
ユーザー gomagoma
提出日時 2017-09-23 12:57:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 59,072 KB
最終ジャッジ日時 2024-11-14 04:10:25
合計ジャッジ時間 9,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,144 KB
testcase_01 AC 128 ms
54,168 KB
testcase_02 WA -
testcase_03 AC 222 ms
58,436 KB
testcase_04 AC 214 ms
57,576 KB
testcase_05 AC 246 ms
58,968 KB
testcase_06 AC 224 ms
57,608 KB
testcase_07 AC 218 ms
57,528 KB
testcase_08 AC 235 ms
58,348 KB
testcase_09 AC 200 ms
56,516 KB
testcase_10 AC 254 ms
58,992 KB
testcase_11 AC 219 ms
57,764 KB
testcase_12 AC 236 ms
57,548 KB
testcase_13 AC 250 ms
59,072 KB
testcase_14 AC 141 ms
53,996 KB
testcase_15 AC 148 ms
54,108 KB
testcase_16 AC 256 ms
58,900 KB
testcase_17 AC 262 ms
58,620 KB
testcase_18 AC 252 ms
58,612 KB
testcase_19 AC 260 ms
58,948 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 127 ms
54,100 KB
testcase_24 AC 148 ms
54,344 KB
testcase_25 AC 173 ms
54,320 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 218 ms
57,392 KB
testcase_30 AC 198 ms
57,052 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