結果

問題 No.1463 Hungry Kanten
ユーザー paruf4paruf4
提出日時 2021-04-10 16:02:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 113,708 KB
最終ジャッジ日時 2024-06-26 05:18:31
合計ジャッジ時間 3,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 72 ms
75,156 KB
testcase_03 AC 215 ms
76,112 KB
testcase_04 AC 56 ms
63,616 KB
testcase_05 AC 333 ms
113,708 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 41 ms
51,456 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 49 ms
60,160 KB
testcase_11 AC 56 ms
62,720 KB
testcase_12 AC 60 ms
64,640 KB
testcase_13 AC 63 ms
65,664 KB
testcase_14 AC 66 ms
68,096 KB
testcase_15 AC 72 ms
70,656 KB
testcase_16 AC 72 ms
75,392 KB
testcase_17 AC 94 ms
78,976 KB
testcase_18 AC 94 ms
76,688 KB
testcase_19 AC 200 ms
91,956 KB
testcase_20 AC 281 ms
101,248 KB
testcase_21 AC 55 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
res = set()
for i in range(1 << n):
    cnt = 0
    use = []
    for j in range(n):
        if i & (1 << j):
            cnt += 1
            use.append(j)
    if cnt < k:
        continue
    use_size = len(use)
    tmp1 = 0
    tmp2 = 1
    for j in range(use_size):
        tmp1 += a[use[j]]
        tmp2 *= a[use[j]]
    res.add(tmp1)
    res.add(tmp2)

print(len(res))
0