結果

問題 No.1463 Hungry Kanten
ユーザー stngstng
提出日時 2021-08-28 14:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 121,852 KB
最終ジャッジ日時 2024-11-21 21:03:45
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 103 ms
77,056 KB
testcase_03 AC 307 ms
75,996 KB
testcase_04 AC 57 ms
65,536 KB
testcase_05 AC 423 ms
121,852 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 47 ms
60,672 KB
testcase_11 AC 51 ms
61,824 KB
testcase_12 AC 56 ms
65,024 KB
testcase_13 AC 57 ms
66,432 KB
testcase_14 AC 69 ms
72,448 KB
testcase_15 AC 63 ms
71,296 KB
testcase_16 AC 83 ms
77,340 KB
testcase_17 AC 97 ms
79,232 KB
testcase_18 AC 114 ms
76,928 KB
testcase_19 AC 225 ms
92,536 KB
testcase_20 AC 364 ms
101,952 KB
testcase_21 AC 47 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = [int(i) for i in input().split()]

num = 2**n
ans = set()

for i in range(num):
    tmp = format(i, '0'+str(n)+'b')
    sm = 0
    sk = 1
    cnt = 0
    for j in range(n):
        if tmp[j] == "1":
            sm += a[j]
            sk *= a[j]
            cnt += 1
    if cnt >= k:
        ans.add(sm)
        ans.add(sk)
        
print(len(ans))
0