結果

問題 No.5 数字のブロック
ユーザー Mcpu3Mcpu3
提出日時 2018-09-05 16:55:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 411 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 47,864 KB
最終ジャッジ日時 2024-11-15 17:18:00
合計ジャッジ時間 9,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,004 KB
testcase_01 AC 127 ms
41,268 KB
testcase_02 RE -
testcase_03 AC 241 ms
46,696 KB
testcase_04 AC 214 ms
45,288 KB
testcase_05 AC 253 ms
47,592 KB
testcase_06 AC 228 ms
46,000 KB
testcase_07 AC 218 ms
45,776 KB
testcase_08 AC 244 ms
46,100 KB
testcase_09 AC 196 ms
43,640 KB
testcase_10 AC 253 ms
47,272 KB
testcase_11 AC 223 ms
46,264 KB
testcase_12 AC 237 ms
46,468 KB
testcase_13 AC 242 ms
46,672 KB
testcase_14 AC 145 ms
41,424 KB
testcase_15 AC 160 ms
41,748 KB
testcase_16 AC 258 ms
46,776 KB
testcase_17 AC 250 ms
47,864 KB
testcase_18 AC 261 ms
46,148 KB
testcase_19 AC 263 ms
47,400 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 125 ms
41,108 KB
testcase_24 AC 164 ms
41,664 KB
testcase_25 AC 176 ms
42,048 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 215 ms
45,656 KB
testcase_30 AC 198 ms
43,816 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int l=sc.nextInt(),n=sc.nextInt(),w[]=new int[n],s=0,t=0,i;
		for(i=0;i<n;++i) {
			w[i]=sc.nextInt();
			s+=w[i];
		}
		sc.close();
		Arrays.sort(w);
		for(i=0;;++i) {
			t+=w[i];
			if(t>l) break;
		}
		if(l>=s) i=n;
		System.out.print(i);
	}
}
0