結果

問題 No.5 数字のブロック
ユーザー marumaru
提出日時 2016-03-20 02:49:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 55,048 KB
最終ジャッジ日時 2024-10-01 09:21:47
合計ジャッジ時間 11,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,692 KB
testcase_01 AC 121 ms
54,020 KB
testcase_02 WA -
testcase_03 AC 287 ms
54,712 KB
testcase_04 AC 226 ms
54,280 KB
testcase_05 WA -
testcase_06 AC 251 ms
54,484 KB
testcase_07 AC 230 ms
54,848 KB
testcase_08 AC 275 ms
54,708 KB
testcase_09 AC 178 ms
54,028 KB
testcase_10 AC 339 ms
54,732 KB
testcase_11 AC 195 ms
54,208 KB
testcase_12 AC 303 ms
54,740 KB
testcase_13 AC 362 ms
54,796 KB
testcase_14 AC 137 ms
53,948 KB
testcase_15 WA -
testcase_16 AC 327 ms
54,928 KB
testcase_17 AC 483 ms
55,048 KB
testcase_18 AC 425 ms
54,988 KB
testcase_19 AC 488 ms
54,784 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 119 ms
53,868 KB
testcase_24 AC 133 ms
54,248 KB
testcase_25 AC 140 ms
54,108 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 #

import java.util.Scanner;

public class yukicoder_5 {
	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		
		String str_l = scanner.nextLine();
		int l = Integer.parseInt(str_l);
		
		String str_n = scanner.nextLine();
		int n = Integer.parseInt(str_n);
		
		String w = scanner.nextLine();
		
		String[] array = w.split(" ");
		int[] array2 = new int[array.length];
		
		for (int i = 0; i < array.length; i++) {
			array2[i] = Integer.parseInt(array[i]);
		}
		
		for (int j = 0; j < array2.length; j++) {
			for (int i = 0; i < array2.length - 1; i++) {
				if (array2[i] > array2[i+1]) {
					int t;
					t = array2[i];
					array2[i] = array2[i+1];
					array2[i+1] = t;
				}
			}
		}
		
		int block = 0;
		
		int sum = 0;
		
		for (block = 0; sum < l; block++) {
			sum += array2[block];
		}
		
		System.out.println(block - 1);
	}
}
	
0