結果

問題 No.5 数字のブロック
ユーザー kanra661kanra661
提出日時 2014-12-16 16:26:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 75,216 KB
実行使用メモリ 60,460 KB
最終ジャッジ日時 2024-06-11 21:54:48
合計ジャッジ時間 10,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,776 KB
testcase_01 AC 143 ms
41,440 KB
testcase_02 WA -
testcase_03 AC 262 ms
46,556 KB
testcase_04 AC 239 ms
46,284 KB
testcase_05 WA -
testcase_06 AC 251 ms
45,940 KB
testcase_07 AC 239 ms
45,600 KB
testcase_08 AC 255 ms
46,812 KB
testcase_09 AC 225 ms
43,636 KB
testcase_10 AC 278 ms
47,268 KB
testcase_11 AC 241 ms
45,992 KB
testcase_12 AC 267 ms
46,236 KB
testcase_13 AC 275 ms
46,432 KB
testcase_14 AC 158 ms
41,992 KB
testcase_15 WA -
testcase_16 AC 275 ms
46,552 KB
testcase_17 AC 288 ms
47,616 KB
testcase_18 AC 282 ms
47,320 KB
testcase_19 AC 275 ms
47,900 KB
testcase_20 AC 142 ms
41,708 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 147 ms
41,580 KB
testcase_24 AC 172 ms
41,952 KB
testcase_25 AC 200 ms
42,064 KB
testcase_26 AC 144 ms
41,576 KB
testcase_27 AC 145 ms
41,740 KB
testcase_28 AC 143 ms
41,320 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 143 ms
41,192 KB
testcase_32 AC 143 ms
41,324 KB
testcase_33 AC 141 ms
41,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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(n>i){
			now_wide += w[i];
			if(now_wide >= l){
				break;
			}
			i++;
		}
		System.out.println(i);
	}
}
0