結果

問題 No.5 数字のブロック
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-04-22 13:00:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 498 ms / 5,000 ms
コード長 973 bytes
コンパイル時間 2,772 ms
コンパイル使用メモリ 91,484 KB
実行使用メモリ 58,632 KB
最終ジャッジ日時 2024-11-17 22:39:18
合計ジャッジ時間 12,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,124 KB
testcase_01 AC 141 ms
54,240 KB
testcase_02 AC 133 ms
54,400 KB
testcase_03 AC 383 ms
58,368 KB
testcase_04 AC 280 ms
57,668 KB
testcase_05 AC 440 ms
58,084 KB
testcase_06 AC 292 ms
58,328 KB
testcase_07 AC 254 ms
56,736 KB
testcase_08 AC 389 ms
58,632 KB
testcase_09 AC 229 ms
57,376 KB
testcase_10 AC 471 ms
58,272 KB
testcase_11 AC 291 ms
57,188 KB
testcase_12 AC 398 ms
58,104 KB
testcase_13 AC 433 ms
58,088 KB
testcase_14 AC 142 ms
54,344 KB
testcase_15 AC 140 ms
53,268 KB
testcase_16 AC 442 ms
58,176 KB
testcase_17 AC 481 ms
58,168 KB
testcase_18 AC 479 ms
58,260 KB
testcase_19 AC 498 ms
58,464 KB
testcase_20 AC 131 ms
53,808 KB
testcase_21 AC 134 ms
54,028 KB
testcase_22 AC 134 ms
54,024 KB
testcase_23 AC 133 ms
54,260 KB
testcase_24 AC 167 ms
54,592 KB
testcase_25 AC 180 ms
56,572 KB
testcase_26 AC 130 ms
54,044 KB
testcase_27 AC 131 ms
53,984 KB
testcase_28 AC 117 ms
53,072 KB
testcase_29 AC 282 ms
57,572 KB
testcase_30 AC 219 ms
57,168 KB
testcase_31 AC 135 ms
54,080 KB
testcase_32 AC 129 ms
54,272 KB
testcase_33 AC 135 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

import static java.lang.Math.*;

public class Main {
    private void solve() {
        Scanner sc = new Scanner(System.in);
        int l = Integer.parseInt(sc.next());
        int n = Integer.parseInt(sc.next());
        sc.nextLine();
        List<Integer> sorted = Stream.of(sc.nextLine().split(" "))
                                     .map(Integer::valueOf)
                                     .sorted()
                                     .collect(Collectors.toList());
        int[] sums = IntStream.range(0, sorted.size())
                              .map(i -> sorted.subList(0, i+1)
                                              .stream()
                                              .reduce(0, (x, y) -> x + y))
                              .toArray();
        System.out.println(abs(Arrays.binarySearch(sums, l) + 1));
    }

    public static void main(String[] args) {
        new Main().solve();
    }
}
0