結果

問題 No.5 数字のブロック
ユーザー Koketti1Koketti1
提出日時 2017-02-04 14:28:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 58,916 KB
最終ジャッジ日時 2024-06-06 14:13:37
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,348 KB
testcase_01 AC 100 ms
40,980 KB
testcase_02 WA -
testcase_03 AC 206 ms
47,088 KB
testcase_04 AC 187 ms
45,900 KB
testcase_05 WA -
testcase_06 AC 198 ms
46,448 KB
testcase_07 AC 185 ms
45,600 KB
testcase_08 AC 210 ms
46,520 KB
testcase_09 AC 173 ms
43,436 KB
testcase_10 AC 225 ms
47,552 KB
testcase_11 AC 190 ms
45,776 KB
testcase_12 AC 210 ms
46,796 KB
testcase_13 AC 219 ms
47,036 KB
testcase_14 AC 116 ms
41,292 KB
testcase_15 WA -
testcase_16 AC 218 ms
46,500 KB
testcase_17 AC 233 ms
47,568 KB
testcase_18 AC 231 ms
47,472 KB
testcase_19 AC 242 ms
47,756 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 114 ms
41,456 KB
testcase_24 AC 137 ms
41,748 KB
testcase_25 AC 142 ms
42,104 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