結果

問題 No.5 数字のブロック
ユーザー Mcpu3Mcpu3
提出日時 2018-09-05 16:59:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 47,784 KB
最終ジャッジ日時 2024-11-18 12:36:25
合計ジャッジ時間 8,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,340 KB
testcase_01 AC 121 ms
41,360 KB
testcase_02 AC 118 ms
41,492 KB
testcase_03 AC 219 ms
46,656 KB
testcase_04 AC 206 ms
45,468 KB
testcase_05 AC 224 ms
46,628 KB
testcase_06 AC 209 ms
46,220 KB
testcase_07 AC 198 ms
45,848 KB
testcase_08 AC 216 ms
46,692 KB
testcase_09 AC 183 ms
44,036 KB
testcase_10 AC 231 ms
47,488 KB
testcase_11 AC 202 ms
45,944 KB
testcase_12 AC 220 ms
46,800 KB
testcase_13 AC 227 ms
47,412 KB
testcase_14 AC 127 ms
41,560 KB
testcase_15 AC 131 ms
42,100 KB
testcase_16 AC 234 ms
46,824 KB
testcase_17 AC 242 ms
47,696 KB
testcase_18 AC 239 ms
47,736 KB
testcase_19 AC 235 ms
47,784 KB
testcase_20 AC 114 ms
41,520 KB
testcase_21 AC 109 ms
41,388 KB
testcase_22 AC 105 ms
41,444 KB
testcase_23 AC 118 ms
41,336 KB
testcase_24 AC 140 ms
42,108 KB
testcase_25 AC 162 ms
41,880 KB
testcase_26 AC 118 ms
41,496 KB
testcase_27 AC 121 ms
41,332 KB
testcase_28 AC 107 ms
41,384 KB
testcase_29 AC 193 ms
45,636 KB
testcase_30 AC 187 ms
43,648 KB
testcase_31 AC 117 ms
41,264 KB
testcase_32 AC 106 ms
41,468 KB
testcase_33 AC 118 ms
41,444 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],t=0,i;
		for(i=0;i<n;++i) w[i]=sc.nextInt();
		sc.close();
		Arrays.sort(w);
		for(i=0;i<n;++i) {
			t+=w[i];
			if(t>l) break;
		}
		System.out.print(i);
	}
}
0