結果

問題 No.5 数字のブロック
ユーザー Naoyk1212Naoyk1212
提出日時 2015-07-24 15:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 499 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 47,760 KB
最終ジャッジ日時 2024-11-17 23:02:10
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,284 KB
testcase_01 AC 120 ms
41,024 KB
testcase_02 AC 121 ms
41,296 KB
testcase_03 AC 235 ms
47,020 KB
testcase_04 AC 205 ms
45,984 KB
testcase_05 AC 239 ms
47,388 KB
testcase_06 AC 215 ms
46,452 KB
testcase_07 AC 207 ms
45,892 KB
testcase_08 AC 225 ms
46,692 KB
testcase_09 AC 183 ms
43,372 KB
testcase_10 AC 232 ms
47,324 KB
testcase_11 AC 205 ms
46,056 KB
testcase_12 AC 213 ms
46,252 KB
testcase_13 AC 229 ms
47,172 KB
testcase_14 AC 127 ms
41,380 KB
testcase_15 AC 143 ms
41,468 KB
testcase_16 AC 242 ms
46,784 KB
testcase_17 AC 247 ms
47,600 KB
testcase_18 AC 250 ms
47,760 KB
testcase_19 AC 254 ms
47,416 KB
testcase_20 AC 123 ms
41,072 KB
testcase_21 AC 114 ms
40,284 KB
testcase_22 AC 125 ms
41,672 KB
testcase_23 AC 120 ms
41,072 KB
testcase_24 AC 141 ms
42,096 KB
testcase_25 AC 161 ms
42,208 KB
testcase_26 AC 123 ms
41,484 KB
testcase_27 AC 119 ms
41,208 KB
testcase_28 AC 125 ms
41,200 KB
testcase_29 AC 204 ms
46,276 KB
testcase_30 AC 180 ms
44,140 KB
testcase_31 AC 117 ms
41,324 KB
testcase_32 AC 110 ms
40,700 KB
testcase_33 AC 104 ms
39,908 KB
権限があれば一括ダウンロードができます

ソースコード

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[] N = new int[n];
		int ans = 0;

		for(int i = 0; i < n; i++){
			N[i] = sc.nextInt();
		}

		Arrays.sort(N);

		int i = 0;
		while(l >= ans){
			ans += N[i];
			i++;
			if(i == n && ans <= l){
				i++;
				break;
			}else if(i == n){
				break;
			}
		}
		System.out.println(i - 1);
	}

}
0