結果

問題 No.1463 Hungry Kanten
ユーザー ks2mks2m
提出日時 2021-04-02 21:29:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 3,520 ms
コンパイル使用メモリ 85,444 KB
実行使用メモリ 93,672 KB
最終ジャッジ日時 2024-06-06 09:09:15
合計ジャッジ時間 9,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,324 KB
testcase_01 AC 108 ms
39,884 KB
testcase_02 AC 186 ms
46,932 KB
testcase_03 AC 403 ms
50,568 KB
testcase_04 AC 126 ms
41,148 KB
testcase_05 AC 935 ms
93,672 KB
testcase_06 AC 124 ms
44,424 KB
testcase_07 AC 124 ms
41,136 KB
testcase_08 AC 128 ms
41,136 KB
testcase_09 AC 123 ms
41,192 KB
testcase_10 AC 127 ms
40,516 KB
testcase_11 AC 127 ms
41,844 KB
testcase_12 AC 126 ms
42,048 KB
testcase_13 AC 125 ms
41,584 KB
testcase_14 AC 155 ms
45,328 KB
testcase_15 AC 123 ms
41,048 KB
testcase_16 AC 177 ms
47,088 KB
testcase_17 AC 240 ms
50,040 KB
testcase_18 AC 170 ms
46,020 KB
testcase_19 AC 516 ms
68,048 KB
testcase_20 AC 638 ms
74,432 KB
testcase_21 AC 131 ms
40,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		BigInteger[] a = new BigInteger[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextBigInteger();
		}
		sc.close();

		Set<BigInteger> set = new HashSet<>();
		int end = 1 << n;
		for (int i = 0; i < end; i++) {
			if (Integer.bitCount(i) < k) {
				continue;
			}
			BigInteger x = BigInteger.ZERO;
			BigInteger y = BigInteger.ONE;
			for (int j = 0; j < n; j++) {
				if ((i >> j & 1) == 1) {
					x = x.add(a[j]);
					y = y.multiply(a[j]);
				}
			}
			set.add(x);
			set.add(y);
		}
		System.out.println(set.size());
	}
}
0