結果

問題 No.5 数字のブロック
ユーザー Koketti1Koketti1
提出日時 2017-02-04 14:28:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 2,013 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 47,716 KB
最終ジャッジ日時 2024-12-24 06:14:52
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,120 KB
testcase_01 AC 104 ms
40,256 KB
testcase_02 WA -
testcase_03 AC 224 ms
46,488 KB
testcase_04 AC 205 ms
45,832 KB
testcase_05 WA -
testcase_06 AC 219 ms
45,956 KB
testcase_07 AC 206 ms
45,432 KB
testcase_08 AC 218 ms
45,716 KB
testcase_09 AC 184 ms
43,332 KB
testcase_10 AC 254 ms
47,676 KB
testcase_11 AC 210 ms
46,092 KB
testcase_12 AC 234 ms
46,460 KB
testcase_13 AC 243 ms
46,852 KB
testcase_14 AC 131 ms
41,748 KB
testcase_15 WA -
testcase_16 AC 239 ms
47,012 KB
testcase_17 AC 253 ms
47,600 KB
testcase_18 AC 246 ms
47,092 KB
testcase_19 AC 253 ms
47,716 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
41,320 KB
testcase_24 AC 152 ms
41,812 KB
testcase_25 AC 163 ms
41,876 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.Scanner;
import java.util.Arrays;
public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int sum = 0;
		int count = 0;
		int L = scanner.nextInt();
		int N = scanner.nextInt();
		int a[] = new int[N];
		for(int i = 0;i < N;i++){
			a[i] = scanner.nextInt();
		}
		Arrays.sort(a);
		while(sum<L){
			sum += a[count];
			count++;
		}
		
		System.out.println(count-1);
		
		scanner.close();
	}
}
0