結果

問題 No.5 数字のブロック
ユーザー papipenpapipen
提出日時 2017-03-26 14:51:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 59,316 KB
最終ジャッジ日時 2024-11-18 10:58:36
合計ジャッジ時間 9,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,020 KB
testcase_01 AC 124 ms
54,444 KB
testcase_02 AC 104 ms
52,880 KB
testcase_03 AC 229 ms
58,636 KB
testcase_04 AC 201 ms
57,836 KB
testcase_05 AC 235 ms
59,148 KB
testcase_06 AC 215 ms
58,836 KB
testcase_07 AC 217 ms
57,880 KB
testcase_08 AC 224 ms
58,580 KB
testcase_09 AC 190 ms
57,368 KB
testcase_10 AC 241 ms
59,064 KB
testcase_11 AC 211 ms
58,224 KB
testcase_12 AC 235 ms
58,984 KB
testcase_13 AC 241 ms
59,204 KB
testcase_14 AC 135 ms
54,220 KB
testcase_15 AC 146 ms
54,408 KB
testcase_16 AC 238 ms
59,316 KB
testcase_17 AC 241 ms
58,976 KB
testcase_18 AC 238 ms
59,056 KB
testcase_19 AC 258 ms
59,012 KB
testcase_20 AC 121 ms
54,028 KB
testcase_21 AC 128 ms
54,288 KB
testcase_22 AC 121 ms
53,352 KB
testcase_23 AC 112 ms
53,368 KB
testcase_24 AC 160 ms
54,640 KB
testcase_25 AC 171 ms
54,824 KB
testcase_26 AC 119 ms
54,020 KB
testcase_27 AC 120 ms
54,096 KB
testcase_28 AC 118 ms
53,996 KB
testcase_29 AC 210 ms
58,060 KB
testcase_30 AC 189 ms
56,756 KB
testcase_31 AC 118 ms
54,196 KB
testcase_32 AC 106 ms
53,252 KB
testcase_33 AC 119 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class Block{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int L = s.nextInt();
		int N = s.nextInt();
		int W[] = new int[N];
		for(int i = 0; i < N; i++){
			W[i] = s.nextInt();
		}
		Arrays.sort(W);
		
		int sum = 0;
		for(int j = 0; j < N; j++){
			sum += W[j];
			if(sum == L){
				System.out.println(j + 1);
				System.exit(0);
			}else if(sum > L){
				System.out.println(j);
				System.exit(0);
			}
		}
		System.out.println(N);
	}
}
0