結果

問題 No.5 数字のブロック
ユーザー Mcpu3Mcpu3
提出日時 2018-09-05 16:58:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 1,874 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 59,292 KB
最終ジャッジ日時 2024-11-18 12:36:03
合計ジャッジ時間 8,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,124 KB
testcase_01 AC 114 ms
53,640 KB
testcase_02 AC 118 ms
54,004 KB
testcase_03 AC 212 ms
58,072 KB
testcase_04 AC 199 ms
57,528 KB
testcase_05 AC 230 ms
58,992 KB
testcase_06 AC 207 ms
58,216 KB
testcase_07 AC 203 ms
57,468 KB
testcase_08 AC 216 ms
58,512 KB
testcase_09 AC 175 ms
56,708 KB
testcase_10 AC 225 ms
58,188 KB
testcase_11 AC 200 ms
57,564 KB
testcase_12 AC 219 ms
58,544 KB
testcase_13 AC 220 ms
58,588 KB
testcase_14 AC 129 ms
54,148 KB
testcase_15 AC 140 ms
54,328 KB
testcase_16 AC 230 ms
58,876 KB
testcase_17 AC 243 ms
58,576 KB
testcase_18 AC 242 ms
59,292 KB
testcase_19 AC 249 ms
58,464 KB
testcase_20 AC 116 ms
53,892 KB
testcase_21 AC 118 ms
54,012 KB
testcase_22 AC 117 ms
54,044 KB
testcase_23 AC 100 ms
52,768 KB
testcase_24 AC 138 ms
53,996 KB
testcase_25 AC 159 ms
54,264 KB
testcase_26 AC 123 ms
54,252 KB
testcase_27 AC 116 ms
54,140 KB
testcase_28 AC 111 ms
53,516 KB
testcase_29 AC 200 ms
57,176 KB
testcase_30 AC 184 ms
56,604 KB
testcase_31 AC 104 ms
52,932 KB
testcase_32 AC 111 ms
54,272 KB
testcase_33 AC 104 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

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<n;++i) {
			t+=w[i];
			if(t>l) break;
		}
		System.out.print(i);
	}
}
0