結果

問題 No.5 数字のブロック
ユーザー chamc1984chamc1984
提出日時 2017-12-27 00:30:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 1,066 bytes
コンパイル時間 3,422 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 52,544 KB
最終ジャッジ日時 2024-11-18 11:54:24
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,592 KB
testcase_01 AC 49 ms
50,116 KB
testcase_02 AC 49 ms
50,400 KB
testcase_03 AC 82 ms
51,324 KB
testcase_04 AC 88 ms
51,580 KB
testcase_05 AC 99 ms
52,192 KB
testcase_06 AC 79 ms
51,392 KB
testcase_07 AC 88 ms
51,456 KB
testcase_08 AC 88 ms
51,904 KB
testcase_09 AC 75 ms
51,220 KB
testcase_10 AC 96 ms
52,076 KB
testcase_11 AC 85 ms
51,416 KB
testcase_12 AC 90 ms
51,536 KB
testcase_13 AC 92 ms
52,032 KB
testcase_14 AC 51 ms
50,424 KB
testcase_15 AC 53 ms
50,460 KB
testcase_16 AC 92 ms
51,852 KB
testcase_17 AC 101 ms
52,544 KB
testcase_18 AC 99 ms
52,356 KB
testcase_19 AC 114 ms
52,436 KB
testcase_20 AC 54 ms
50,364 KB
testcase_21 AC 49 ms
50,188 KB
testcase_22 AC 49 ms
50,072 KB
testcase_23 AC 51 ms
50,116 KB
testcase_24 AC 52 ms
50,524 KB
testcase_25 AC 53 ms
50,468 KB
testcase_26 AC 50 ms
50,552 KB
testcase_27 AC 51 ms
50,216 KB
testcase_28 AC 50 ms
50,228 KB
testcase_29 AC 87 ms
51,148 KB
testcase_30 AC 77 ms
51,140 KB
testcase_31 AC 50 ms
50,376 KB
testcase_32 AC 51 ms
50,484 KB
testcase_33 AC 49 ms
50,328 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