結果

問題 No.1463 Hungry Kanten
ユーザー tentententen
提出日時 2021-04-13 12:19:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 962 ms / 2,000 ms
コード長 2,831 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 92,232 KB
最終ジャッジ日時 2024-06-29 13:15:18
合計ジャッジ時間 7,278 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,144 KB
testcase_01 AC 53 ms
36,972 KB
testcase_02 AC 125 ms
44,068 KB
testcase_03 AC 393 ms
47,688 KB
testcase_04 AC 53 ms
36,756 KB
testcase_05 AC 962 ms
92,232 KB
testcase_06 AC 54 ms
37,288 KB
testcase_07 AC 54 ms
37,208 KB
testcase_08 AC 54 ms
37,288 KB
testcase_09 AC 53 ms
37,072 KB
testcase_10 AC 53 ms
37,472 KB
testcase_11 AC 56 ms
37,696 KB
testcase_12 AC 63 ms
38,248 KB
testcase_13 AC 56 ms
37,532 KB
testcase_14 AC 96 ms
42,496 KB
testcase_15 AC 65 ms
37,880 KB
testcase_16 AC 125 ms
44,236 KB
testcase_17 AC 228 ms
50,440 KB
testcase_18 AC 121 ms
44,176 KB
testcase_19 AC 572 ms
66,224 KB
testcase_20 AC 721 ms
74,076 KB
testcase_21 AC 54 ms
37,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        HashSet<BigInteger> nums = new HashSet<>();
        for (int i = 1; i < (1 << n); i++) {
            if (getPop(i) < k) {
                continue;
            }
            int sum = 0;
            BigInteger mul = BigInteger.valueOf(1);
            int x = i;
            for (int j = 0; j < n; j++) {
                if (x % 2 == 1) {
                    sum += arr[j];
                    mul = mul.multiply(BigInteger.valueOf(arr[j]));
                }
                x >>= 1;
            }
            nums.add(mul);
            nums.add(BigInteger.valueOf(sum));
        }
        System.out.println(nums.size());
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
    
    static class Number {
        HashMap<Integer, Integer> map = new HashMap<>();
        
        public Number(int x) {
            multiply(x);
        }
        
        public void multiply(int x) {
            for (int i = 2; i <= Math.sqrt(x); i++) {
                while (x % i == 0) {
                    map.put(i, map.getOrDefault(i, 0) + 1);
                    x /= i;
                }
            }
            if (x > 1) {
                map.put(x, map.getOrDefault(x, 0) + 1);
            }
        }
        
        public int hashCode() {
            return map.size();
        }
        
        public boolean equals(Object o) {
            Number n = (Number)o;
            if (map.size() != n.map.size()) {
                return false;
            }
            for (int x : map.keySet()) {
                if (!n.map.containsKey(x) || map.get(x) != n.map.get(x)) {
                    return false;
                }
            }
            return true;
        }
        
        public String toString() {
            return map.toString();
        }
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0