結果

問題 No.5 数字のブロック
ユーザー chamc1984chamc1984
提出日時 2017-12-27 00:30:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 1,066 bytes
コンパイル時間 3,753 ms
コンパイル使用メモリ 81,488 KB
実行使用メモリ 40,584 KB
最終ジャッジ日時 2024-04-29 09:32:40
合計ジャッジ時間 7,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,936 KB
testcase_01 AC 53 ms
36,716 KB
testcase_02 AC 52 ms
36,752 KB
testcase_03 AC 98 ms
39,216 KB
testcase_04 AC 97 ms
38,376 KB
testcase_05 AC 107 ms
39,676 KB
testcase_06 AC 91 ms
38,520 KB
testcase_07 AC 86 ms
38,560 KB
testcase_08 AC 96 ms
39,108 KB
testcase_09 AC 69 ms
37,984 KB
testcase_10 AC 119 ms
39,980 KB
testcase_11 AC 92 ms
38,760 KB
testcase_12 AC 96 ms
39,168 KB
testcase_13 AC 100 ms
39,716 KB
testcase_14 AC 54 ms
36,576 KB
testcase_15 AC 56 ms
36,940 KB
testcase_16 AC 108 ms
40,052 KB
testcase_17 AC 126 ms
40,392 KB
testcase_18 AC 118 ms
39,988 KB
testcase_19 AC 122 ms
40,584 KB
testcase_20 AC 52 ms
36,976 KB
testcase_21 AC 54 ms
36,956 KB
testcase_22 AC 52 ms
37,136 KB
testcase_23 AC 52 ms
36,800 KB
testcase_24 AC 55 ms
36,792 KB
testcase_25 AC 58 ms
37,060 KB
testcase_26 AC 54 ms
37,040 KB
testcase_27 AC 53 ms
36,984 KB
testcase_28 AC 54 ms
36,768 KB
testcase_29 AC 96 ms
38,376 KB
testcase_30 AC 70 ms
38,016 KB
testcase_31 AC 52 ms
36,560 KB
testcase_32 AC 52 ms
36,636 KB
testcase_33 AC 52 ms
36,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;

public class YukiCoderNo5 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		// Read Input
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		
		try{
			// Read 1st line
			int L = Integer.parseInt(br.readLine());
			
			// Read 2nd line
			int N = Integer.parseInt(br.readLine());
			
			// Read 3rd line to ArrayList
			String s[] = br.readLine().split(" ");
			ArrayList<Integer> list = new ArrayList<Integer>();
			for( int i=0; i<N; i++ ) {
				list.add(Integer.parseInt(s[i]));
			}
			Collections.sort(list);
			
			int sum = 0;
			int cnt = 0;
			for( int i=0; i<list.size(); i++ ) {
				sum+=list.get(i);
//				System.out.println("debug: " + sum);
				if(L < sum){
					break;
				}
				cnt++;
			}
			
			// Output RESULT
			System.out.println(cnt);
			
		} catch(Exception e) {
			System.out.println("error!");
			return;			
		}
		
		return;
	}

}
0