結果

問題 No.5 数字のブロック
ユーザー kanra661kanra661
提出日時 2014-12-16 16:17:41
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 449 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 59,120 KB
最終ジャッジ日時 2024-06-11 21:54:15
合計ジャッジ時間 8,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,112 KB
testcase_01 AC 122 ms
54,076 KB
testcase_02 RE -
testcase_03 AC 222 ms
58,356 KB
testcase_04 AC 205 ms
57,712 KB
testcase_05 AC 243 ms
59,060 KB
testcase_06 AC 214 ms
57,856 KB
testcase_07 AC 219 ms
57,284 KB
testcase_08 AC 236 ms
58,344 KB
testcase_09 AC 188 ms
56,712 KB
testcase_10 AC 233 ms
58,844 KB
testcase_11 AC 221 ms
57,692 KB
testcase_12 AC 228 ms
58,572 KB
testcase_13 AC 222 ms
59,044 KB
testcase_14 AC 127 ms
54,248 KB
testcase_15 AC 138 ms
53,960 KB
testcase_16 AC 252 ms
58,752 KB
testcase_17 AC 251 ms
58,900 KB
testcase_18 AC 238 ms
58,744 KB
testcase_19 AC 238 ms
59,120 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 100 ms
53,140 KB
testcase_24 AC 136 ms
54,560 KB
testcase_25 AC 154 ms
54,288 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 202 ms
57,752 KB
testcase_30 AC 177 ms
56,700 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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