結果

問題 No.5 数字のブロック
ユーザー mits58mits58
提出日時 2015-07-18 01:06:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 48,036 KB
最終ジャッジ日時 2024-07-08 10:00:56
合計ジャッジ時間 8,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,580 KB
testcase_01 AC 120 ms
41,900 KB
testcase_02 WA -
testcase_03 AC 231 ms
46,660 KB
testcase_04 AC 200 ms
45,868 KB
testcase_05 AC 228 ms
46,912 KB
testcase_06 AC 222 ms
46,408 KB
testcase_07 AC 200 ms
45,804 KB
testcase_08 AC 237 ms
46,568 KB
testcase_09 AC 190 ms
43,876 KB
testcase_10 AC 240 ms
47,512 KB
testcase_11 AC 205 ms
45,892 KB
testcase_12 AC 231 ms
46,532 KB
testcase_13 AC 234 ms
46,444 KB
testcase_14 AC 133 ms
41,672 KB
testcase_15 AC 159 ms
41,552 KB
testcase_16 AC 236 ms
47,216 KB
testcase_17 AC 249 ms
48,036 KB
testcase_18 AC 252 ms
47,828 KB
testcase_19 AC 246 ms
47,840 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 121 ms
41,716 KB
testcase_24 AC 155 ms
42,000 KB
testcase_25 AC 176 ms
42,412 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 209 ms
45,884 KB
testcase_30 AC 185 ms
44,304 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int l=sc.nextInt();
        	int n=sc.nextInt();
        	int result=0;
        	int[] box=new int[n];
        	
        	for(int i=0;i<n;i++){
        		box[i]=sc.nextInt();
        	}
        	
        	Arrays.sort(box);
        	
        	for(int i=0;i<n;i++){
        		result+=box[i];
        		if(result<=l) continue;
        		else{
        			System.out.println(i);
        			break;
        		}
        	}
        	
        }
    }
}
0