結果

問題 No.1463 Hungry Kanten
ユーザー 大橋佐和大橋佐和
提出日時 2022-05-06 19:59:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 120,560 KB
最終ジャッジ日時 2024-07-05 20:53:56
合計ジャッジ時間 3,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
51,328 KB
testcase_02 AC 71 ms
76,972 KB
testcase_03 AC 293 ms
75,648 KB
testcase_04 AC 44 ms
60,288 KB
testcase_05 AC 392 ms
120,560 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 44 ms
60,544 KB
testcase_11 AC 46 ms
60,544 KB
testcase_12 AC 53 ms
64,128 KB
testcase_13 AC 52 ms
62,464 KB
testcase_14 AC 59 ms
67,968 KB
testcase_15 AC 53 ms
67,584 KB
testcase_16 AC 71 ms
76,856 KB
testcase_17 AC 90 ms
79,452 KB
testcase_18 AC 85 ms
76,696 KB
testcase_19 AC 213 ms
92,040 KB
testcase_20 AC 302 ms
101,500 KB
testcase_21 AC 51 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))

num_set = set()
for i in range(1 << k - 1, 1 << n):
    if bin(i).count("1") < k:
        continue
    s = 0
    p = 1
    for j in range(n):
        if i >> j & 1:
            s += a[j]
            p *= a[j]
    num_set.add(s)
    num_set.add(p)

print(len(num_set))
0