結果

問題 No.5 数字のブロック
ユーザー juger_jvjuger_jv
提出日時 2016-05-03 20:14:56
言語 Java
(openjdk 23)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 75,504 KB
実行使用メモリ 52,668 KB
最終ジャッジ日時 2024-11-18 08:33:04
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,016 KB
testcase_01 AC 54 ms
50,416 KB
testcase_02 AC 54 ms
50,460 KB
testcase_03 AC 100 ms
52,420 KB
testcase_04 AC 79 ms
51,264 KB
testcase_05 AC 92 ms
52,604 KB
testcase_06 AC 89 ms
51,528 KB
testcase_07 AC 88 ms
51,624 KB
testcase_08 AC 96 ms
51,780 KB
testcase_09 AC 68 ms
51,132 KB
testcase_10 AC 92 ms
51,964 KB
testcase_11 AC 87 ms
51,452 KB
testcase_12 AC 90 ms
52,596 KB
testcase_13 AC 102 ms
52,668 KB
testcase_14 AC 56 ms
50,484 KB
testcase_15 AC 59 ms
50,256 KB
testcase_16 AC 107 ms
52,352 KB
testcase_17 AC 100 ms
52,624 KB
testcase_18 AC 106 ms
51,992 KB
testcase_19 AC 108 ms
52,580 KB
testcase_20 AC 55 ms
50,380 KB
testcase_21 AC 57 ms
50,464 KB
testcase_22 AC 55 ms
50,396 KB
testcase_23 AC 55 ms
50,400 KB
testcase_24 AC 56 ms
50,456 KB
testcase_25 AC 56 ms
50,660 KB
testcase_26 AC 55 ms
50,416 KB
testcase_27 AC 56 ms
50,424 KB
testcase_28 AC 55 ms
50,156 KB
testcase_29 AC 74 ms
51,568 KB
testcase_30 AC 66 ms
50,872 KB
testcase_31 AC 55 ms
50,368 KB
testcase_32 AC 54 ms
50,396 KB
testcase_33 AC 56 ms
50,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
class no5
{
    public static void main(String args[])throws IOException
    {
	BufferedReader sc=new BufferedReader(new InputStreamReader(System.in));
	int l=Integer.parseInt(sc.readLine());
	int n=Integer.parseInt(sc.readLine());
	String w[]=sc.readLine().split(" ");
	int wi[]=new int[n];
	for(int i=0;i<n;i++)wi[i]=Integer.parseInt(w[i]);
	Arrays.sort(wi);
	int ans=0,s=l,i=0;
	do
	    {
		if(s>=wi[i])
		    {
		    s-=wi[i];
		    ans++;
		    }
		else break;
		//System.out.println(s);
		i++;
	    }while(s>=0&&i<n);
	System.out.println(ans);
    }
}
0