結果

問題 No.5 数字のブロック
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 17:51:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 48,096 KB
最終ジャッジ日時 2024-06-23 23:49:35
合計ジャッジ時間 9,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,460 KB
testcase_01 AC 128 ms
41,540 KB
testcase_02 WA -
testcase_03 AC 241 ms
47,048 KB
testcase_04 AC 222 ms
45,996 KB
testcase_05 WA -
testcase_06 AC 235 ms
46,644 KB
testcase_07 AC 225 ms
45,996 KB
testcase_08 AC 241 ms
46,772 KB
testcase_09 AC 191 ms
44,096 KB
testcase_10 AC 255 ms
48,064 KB
testcase_11 AC 223 ms
46,364 KB
testcase_12 AC 241 ms
46,936 KB
testcase_13 AC 259 ms
47,588 KB
testcase_14 AC 137 ms
41,404 KB
testcase_15 WA -
testcase_16 AC 267 ms
46,716 KB
testcase_17 AC 276 ms
47,788 KB
testcase_18 AC 266 ms
46,536 KB
testcase_19 AC 279 ms
47,248 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 128 ms
41,324 KB
testcase_24 AC 171 ms
42,260 KB
testcase_25 AC 172 ms
42,288 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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[] a) {
		Scanner s=new Scanner(System.in);
		int L=s.nextInt(),N=s.nextInt(),i=0,Z=0;
		int[] B=new int[N];
		while(s.hasNext())B[i++]=s.nextInt();
		Arrays.sort(B);
		for(i=0;L>(Z+=B[i++]););
		System.out.println(i-1);
	}
}
0