結果

問題 No.5 数字のブロック
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 17:59:09
言語 Java21
(openjdk 21)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 337 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-06-23 23:49:45
合計ジャッジ時間 9,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,112 KB
testcase_01 AC 109 ms
40,084 KB
testcase_02 AC 125 ms
41,248 KB
testcase_03 AC 245 ms
46,508 KB
testcase_04 AC 211 ms
45,924 KB
testcase_05 AC 258 ms
47,720 KB
testcase_06 AC 225 ms
46,592 KB
testcase_07 AC 223 ms
45,880 KB
testcase_08 AC 237 ms
46,636 KB
testcase_09 AC 200 ms
44,540 KB
testcase_10 AC 253 ms
47,444 KB
testcase_11 AC 226 ms
45,436 KB
testcase_12 AC 238 ms
46,772 KB
testcase_13 AC 249 ms
47,260 KB
testcase_14 AC 141 ms
41,588 KB
testcase_15 AC 160 ms
41,692 KB
testcase_16 AC 254 ms
46,852 KB
testcase_17 AC 262 ms
47,844 KB
testcase_18 AC 268 ms
47,756 KB
testcase_19 AC 263 ms
47,496 KB
testcase_20 RE -
testcase_21 AC 122 ms
41,540 KB
testcase_22 AC 126 ms
41,592 KB
testcase_23 AC 124 ms
41,680 KB
testcase_24 AC 163 ms
42,588 KB
testcase_25 AC 166 ms
42,648 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 215 ms
45,836 KB
testcase_30 AC 205 ms
44,264 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[] 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-(Z>L?1:0));
	}
}
0