結果

問題 No.5 数字のブロック
ユーザー marumaru
提出日時 2016-03-20 03:00:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 557 ms / 5,000 ms
コード長 909 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 55,068 KB
最終ジャッジ日時 2024-11-18 08:23:53
合計ジャッジ時間 12,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,972 KB
testcase_01 AC 125 ms
54,284 KB
testcase_02 AC 126 ms
54,116 KB
testcase_03 AC 323 ms
54,792 KB
testcase_04 AC 242 ms
54,420 KB
testcase_05 AC 423 ms
55,008 KB
testcase_06 AC 274 ms
55,068 KB
testcase_07 AC 267 ms
54,724 KB
testcase_08 AC 314 ms
54,688 KB
testcase_09 AC 185 ms
54,116 KB
testcase_10 AC 465 ms
54,788 KB
testcase_11 AC 219 ms
54,176 KB
testcase_12 AC 348 ms
54,832 KB
testcase_13 AC 413 ms
54,980 KB
testcase_14 AC 130 ms
53,992 KB
testcase_15 AC 133 ms
54,028 KB
testcase_16 AC 371 ms
54,820 KB
testcase_17 AC 525 ms
55,004 KB
testcase_18 AC 393 ms
54,916 KB
testcase_19 AC 557 ms
54,856 KB
testcase_20 AC 126 ms
54,132 KB
testcase_21 AC 126 ms
54,204 KB
testcase_22 AC 126 ms
53,808 KB
testcase_23 AC 126 ms
54,080 KB
testcase_24 AC 143 ms
53,844 KB
testcase_25 AC 152 ms
53,872 KB
testcase_26 AC 129 ms
54,224 KB
testcase_27 AC 128 ms
54,004 KB
testcase_28 AC 128 ms
54,008 KB
testcase_29 AC 236 ms
54,260 KB
testcase_30 AC 190 ms
54,212 KB
testcase_31 AC 133 ms
53,860 KB
testcase_32 AC 131 ms
54,044 KB
testcase_33 AC 128 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

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 count = 0;
		int sum = 0;
		
		for (count = 0; count < array2.length; count++) {
			sum += array2[count];
			
			if (sum > l) break;
		}
		
		System.out.println(count);
	}
}
	
0