結果

問題 No.5 数字のブロック
ユーザー chamc1984chamc1984
提出日時 2017-12-27 00:21:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,067 bytes
コンパイル時間 5,735 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 40,964 KB
最終ジャッジ日時 2024-05-10 03:40:39
合計ジャッジ時間 9,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,240 KB
testcase_01 AC 52 ms
37,376 KB
testcase_02 WA -
testcase_03 AC 95 ms
39,380 KB
testcase_04 AC 95 ms
38,996 KB
testcase_05 WA -
testcase_06 AC 91 ms
39,664 KB
testcase_07 AC 84 ms
38,880 KB
testcase_08 AC 92 ms
39,436 KB
testcase_09 AC 79 ms
38,144 KB
testcase_10 AC 119 ms
39,928 KB
testcase_11 AC 83 ms
38,412 KB
testcase_12 AC 98 ms
39,924 KB
testcase_13 AC 114 ms
39,688 KB
testcase_14 AC 53 ms
37,208 KB
testcase_15 WA -
testcase_16 AC 115 ms
39,892 KB
testcase_17 AC 120 ms
40,836 KB
testcase_18 AC 106 ms
40,024 KB
testcase_19 AC 121 ms
40,964 KB
testcase_20 AC 52 ms
36,872 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
37,220 KB
testcase_24 AC 56 ms
37,000 KB
testcase_25 AC 55 ms
37,132 KB
testcase_26 AC 55 ms
37,256 KB
testcase_27 AC 54 ms
37,004 KB
testcase_28 AC 54 ms
37,196 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 51 ms
37,112 KB
testcase_32 AC 52 ms
36,724 KB
testcase_33 AC 52 ms
37,092 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