結果

問題 No.1463 Hungry Kanten
ユーザー Manuel1024Manuel1024
提出日時 2021-04-04 19:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 1,774 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 112,400 KB
最終ジャッジ日時 2024-12-28 03:21:32
合計ジャッジ時間 3,118 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
51,328 KB
testcase_02 AC 60 ms
68,352 KB
testcase_03 AC 191 ms
76,032 KB
testcase_04 AC 50 ms
62,848 KB
testcase_05 AC 298 ms
112,400 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 39 ms
51,456 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 44 ms
59,520 KB
testcase_11 AC 48 ms
60,672 KB
testcase_12 AC 52 ms
62,336 KB
testcase_13 AC 51 ms
62,464 KB
testcase_14 AC 54 ms
64,000 KB
testcase_15 AC 56 ms
65,664 KB
testcase_16 AC 61 ms
69,376 KB
testcase_17 AC 72 ms
77,568 KB
testcase_18 AC 81 ms
76,288 KB
testcase_19 AC 158 ms
93,976 KB
testcase_20 AC 238 ms
96,900 KB
testcase_21 AC 47 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = set()
for bit in range(1 << n):
    cnt = 0
    sig = 0
    pro = 1
    for i in range(n):
        if bit & (1 << i):
            cnt += 1
            sig += a[i]
            pro *= a[i]
    
    if cnt >= k:
        ans.add(sig)
        ans.add(pro)

print(len(ans))
0