結果

問題 No.5 数字のブロック
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-19 14:21:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 2,819 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 59,084 KB
最終ジャッジ日時 2024-11-18 08:36:56
合計ジャッジ時間 9,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,936 KB
testcase_01 AC 118 ms
54,184 KB
testcase_02 AC 113 ms
53,940 KB
testcase_03 AC 214 ms
58,232 KB
testcase_04 AC 207 ms
57,428 KB
testcase_05 AC 227 ms
58,328 KB
testcase_06 AC 200 ms
57,844 KB
testcase_07 AC 191 ms
57,728 KB
testcase_08 AC 211 ms
58,516 KB
testcase_09 AC 185 ms
57,140 KB
testcase_10 AC 225 ms
58,924 KB
testcase_11 AC 203 ms
57,648 KB
testcase_12 AC 226 ms
58,480 KB
testcase_13 AC 225 ms
59,008 KB
testcase_14 AC 126 ms
54,312 KB
testcase_15 AC 140 ms
54,340 KB
testcase_16 AC 224 ms
58,412 KB
testcase_17 AC 230 ms
58,356 KB
testcase_18 AC 239 ms
59,084 KB
testcase_19 AC 253 ms
58,868 KB
testcase_20 AC 120 ms
53,928 KB
testcase_21 AC 106 ms
53,120 KB
testcase_22 AC 115 ms
54,216 KB
testcase_23 AC 118 ms
54,316 KB
testcase_24 AC 154 ms
54,428 KB
testcase_25 AC 150 ms
54,620 KB
testcase_26 AC 114 ms
54,148 KB
testcase_27 AC 109 ms
53,048 KB
testcase_28 AC 121 ms
54,368 KB
testcase_29 AC 198 ms
57,720 KB
testcase_30 AC 178 ms
56,684 KB
testcase_31 AC 114 ms
54,224 KB
testcase_32 AC 115 ms
54,108 KB
testcase_33 AC 108 ms
53,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

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

public class No5v2 {
	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];
		int tmp = 0;
		int c = 0;
		for (int i = 0; i < w.length; i++) {
			w[i] = sc.nextInt();
		}
		Arrays.sort(w);//ソート
		
		for (int i = 0; i < w.length; i++) {
			if (L - tmp >= w[i]) {
				tmp += w[i];
				c++;
			} else {
				break;
			}
		}
		System.out.println(c);
		sc.close();
	}
}
0