結果

問題 No.1463 Hungry Kanten
ユーザー tentententen
提出日時 2024-02-07 14:22:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,965 bytes
コンパイル時間 2,629 ms
コンパイル使用メモリ 87,932 KB
実行使用メモリ 79,748 KB
最終ジャッジ日時 2024-09-28 12:30:36
合計ジャッジ時間 7,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
38,584 KB
testcase_01 AC 87 ms
38,064 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 679 ms
79,748 KB
testcase_06 AC 90 ms
38,328 KB
testcase_07 AC 88 ms
38,140 KB
testcase_08 AC 87 ms
38,300 KB
testcase_09 AC 88 ms
38,280 KB
testcase_10 AC 94 ms
38,756 KB
testcase_11 AC 111 ms
38,884 KB
testcase_12 AC 107 ms
39,240 KB
testcase_13 AC 117 ms
39,608 KB
testcase_14 AC 142 ms
41,244 KB
testcase_15 AC 154 ms
41,996 KB
testcase_16 AC 167 ms
44,828 KB
testcase_17 AC 231 ms
46,528 KB
testcase_18 AC 208 ms
47,764 KB
testcase_19 AC 440 ms
60,648 KB
testcase_20 AC 457 ms
65,580 KB
testcase_21 AC 102 ms
38,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        List<Integer> values = Stream.generate(sc::nextInt).limit(n).toList();
        long[] sum = new long[1 << n];
        long[] multi = new long[1 << n];
        multi[0] = 1;
        HashSet<Long> ans = new HashSet<>();
        IntStream.range(1, 1 << n).forEach(i -> {
            int idx = IntStream.range(0, n).filter(j -> (i & (1 << j)) > 0).findFirst().orElse(0);
            sum[i] = sum[i ^ (1 << idx)] + values.get(idx);
            multi[i] = multi[i ^ (1 << idx)] * values.get(idx);
            if (getPop(i) >= k) {
                ans.add(sum[i]);
                ans.add(multi[i]);
            }
        });
        System.out.println(ans.size());
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0