結果

問題 No.5 数字のブロック
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-19 13:50:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 382 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 3,510 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 58,668 KB
最終ジャッジ日時 2024-11-18 08:36:37
合計ジャッジ時間 12,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,992 KB
testcase_01 AC 137 ms
54,136 KB
testcase_02 AC 135 ms
54,040 KB
testcase_03 AC 342 ms
58,352 KB
testcase_04 AC 294 ms
58,380 KB
testcase_05 AC 355 ms
58,476 KB
testcase_06 AC 299 ms
58,360 KB
testcase_07 AC 281 ms
58,400 KB
testcase_08 AC 331 ms
58,668 KB
testcase_09 AC 215 ms
54,724 KB
testcase_10 AC 356 ms
58,384 KB
testcase_11 AC 278 ms
57,952 KB
testcase_12 AC 342 ms
58,608 KB
testcase_13 AC 352 ms
58,528 KB
testcase_14 AC 148 ms
53,980 KB
testcase_15 AC 168 ms
41,540 KB
testcase_16 AC 359 ms
46,784 KB
testcase_17 AC 380 ms
47,604 KB
testcase_18 AC 363 ms
47,580 KB
testcase_19 AC 382 ms
47,796 KB
testcase_20 AC 134 ms
41,588 KB
testcase_21 AC 133 ms
41,516 KB
testcase_22 AC 141 ms
41,580 KB
testcase_23 AC 133 ms
41,264 KB
testcase_24 AC 159 ms
41,764 KB
testcase_25 AC 189 ms
42,156 KB
testcase_26 AC 132 ms
41,412 KB
testcase_27 AC 132 ms
41,340 KB
testcase_28 AC 132 ms
41,204 KB
testcase_29 AC 289 ms
47,084 KB
testcase_30 AC 213 ms
43,988 KB
testcase_31 AC 119 ms
40,384 KB
testcase_32 AC 133 ms
41,192 KB
testcase_33 AC 132 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No5 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	int L = sc.nextInt();
	int N = sc.nextInt();
	int[] w = new int[N];
	int tmp = 0;
	int c = 0;
	for(int i = 0; i < w.length; i++){
		w[i] = sc.nextInt();
	}
	for(int j = 1; j < w.length; j++){
		int tmp2 = w[j];
		int i = j - 1;
		while(i >= 0 && w[i] > tmp2){
			w[i + 1] = w[i];
			i--;
		}
		w[i + 1] = tmp2;
	}
	for(int i = 0; i < w.length; i++){
		if(L - tmp >= w[i]){
			tmp += w[i];
			c++;
		}else{
			break;
		}
	}
	System.out.println(c);
	sc.close();
}
}
0