結果

問題 No.5 数字のブロック
ユーザー Koketti1Koketti1
提出日時 2017-02-04 14:45:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 47,868 KB
最終ジャッジ日時 2024-04-29 08:48:37
合計ジャッジ時間 9,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,184 KB
testcase_01 AC 118 ms
40,180 KB
testcase_02 AC 130 ms
41,284 KB
testcase_03 AC 238 ms
47,416 KB
testcase_04 AC 220 ms
45,728 KB
testcase_05 AC 252 ms
46,236 KB
testcase_06 AC 231 ms
46,352 KB
testcase_07 AC 230 ms
46,020 KB
testcase_08 AC 248 ms
46,636 KB
testcase_09 AC 206 ms
43,784 KB
testcase_10 AC 263 ms
47,636 KB
testcase_11 AC 225 ms
46,616 KB
testcase_12 AC 249 ms
46,636 KB
testcase_13 AC 254 ms
47,116 KB
testcase_14 AC 142 ms
41,320 KB
testcase_15 AC 153 ms
41,704 KB
testcase_16 AC 255 ms
47,088 KB
testcase_17 AC 266 ms
47,400 KB
testcase_18 AC 262 ms
47,868 KB
testcase_19 AC 270 ms
47,524 KB
testcase_20 AC 128 ms
41,284 KB
testcase_21 AC 131 ms
41,240 KB
testcase_22 AC 130 ms
41,076 KB
testcase_23 AC 133 ms
41,276 KB
testcase_24 AC 157 ms
41,656 KB
testcase_25 AC 181 ms
42,088 KB
testcase_26 AC 127 ms
41,420 KB
testcase_27 AC 131 ms
41,112 KB
testcase_28 AC 129 ms
40,912 KB
testcase_29 AC 218 ms
45,956 KB
testcase_30 AC 205 ms
43,876 KB
testcase_31 AC 129 ms
41,448 KB
testcase_32 AC 131 ms
41,104 KB
testcase_33 AC 127 ms
41,148 KB
権限があれば一括ダウンロードができます

ソースコード

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);
		for(int i = 0;i < N;i++){
			sum += a[count];
			count++;
			if(sum>L){
				break;
			}
		}
		if(sum>L){
			count -= 1;
		}
		System.out.println(count);
		
		scanner.close();
	}
}
0