結果

問題 No.5 数字のブロック
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-05-19 14:15:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 3,798 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 47,572 KB
最終ジャッジ日時 2024-10-06 06:09:22
合計ジャッジ時間 11,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,520 KB
testcase_01 AC 121 ms
41,140 KB
testcase_02 WA -
testcase_03 AC 297 ms
47,012 KB
testcase_04 AC 272 ms
47,060 KB
testcase_05 WA -
testcase_06 AC 265 ms
46,884 KB
testcase_07 AC 246 ms
46,668 KB
testcase_08 AC 298 ms
47,004 KB
testcase_09 AC 191 ms
43,412 KB
testcase_10 AC 323 ms
47,356 KB
testcase_11 AC 247 ms
46,408 KB
testcase_12 AC 301 ms
46,920 KB
testcase_13 AC 307 ms
46,956 KB
testcase_14 AC 136 ms
41,496 KB
testcase_15 WA -
testcase_16 AC 317 ms
47,156 KB
testcase_17 AC 333 ms
47,232 KB
testcase_18 AC 347 ms
47,444 KB
testcase_19 AC 352 ms
47,572 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 124 ms
41,264 KB
testcase_24 AC 152 ms
41,732 KB
testcase_25 AC 184 ms
41,964 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No5v2 {
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;
	int CL = L;
	int k = 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;
	}
	while(CL >0 && CL - w[k] > 0){
		CL -= w[k];
		k++;
		c++;
	}
	System.out.println(c);
	sc.close();
}
}
0