結果

問題 No.1463 Hungry Kanten
ユーザー tentententen
提出日時 2024-02-07 17:52:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 920 ms / 2,000 ms
コード長 2,110 bytes
コンパイル時間 2,907 ms
コンパイル使用メモリ 82,860 KB
実行使用メモリ 117,228 KB
最終ジャッジ日時 2024-09-28 12:32:18
合計ジャッジ時間 7,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
38,108 KB
testcase_01 AC 67 ms
38,140 KB
testcase_02 AC 158 ms
45,104 KB
testcase_03 AC 495 ms
90,748 KB
testcase_04 AC 94 ms
39,152 KB
testcase_05 AC 920 ms
117,228 KB
testcase_06 AC 73 ms
38,052 KB
testcase_07 AC 71 ms
38,176 KB
testcase_08 AC 76 ms
38,136 KB
testcase_09 AC 74 ms
38,024 KB
testcase_10 AC 73 ms
38,400 KB
testcase_11 AC 79 ms
38,116 KB
testcase_12 AC 99 ms
38,704 KB
testcase_13 AC 107 ms
39,420 KB
testcase_14 AC 139 ms
41,424 KB
testcase_15 AC 149 ms
42,932 KB
testcase_16 AC 168 ms
47,060 KB
testcase_17 AC 203 ms
48,948 KB
testcase_18 AC 211 ms
55,236 KB
testcase_19 AC 428 ms
76,528 KB
testcase_20 AC 715 ms
108,912 KB
testcase_21 AC 91 ms
38,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        List<BigInteger> values = IntStream.range(0, n).mapToObj(i -> new BigInteger(sc.next())).toList();
        BigInteger[] sum = new BigInteger[1 << n];
        BigInteger[] multi = new BigInteger[1 << n];
        sum[0] = new BigInteger("0");
        multi[0] = new BigInteger("1");
        HashSet<BigInteger> 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)].add(values.get(idx));
            multi[i] = multi[i ^ (1 << idx)].multiply(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