結果

問題 No.1463 Hungry Kanten
ユーザー MtSakaMtSaka
提出日時 2021-03-08 13:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 149,108 KB
最終ジャッジ日時 2024-12-23 23:15:47
合計ジャッジ時間 2,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 56 ms
70,016 KB
testcase_03 AC 262 ms
113,392 KB
testcase_04 AC 47 ms
63,104 KB
testcase_05 AC 307 ms
149,108 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 40 ms
59,648 KB
testcase_11 AC 44 ms
60,928 KB
testcase_12 AC 48 ms
63,360 KB
testcase_13 AC 47 ms
62,720 KB
testcase_14 AC 52 ms
66,176 KB
testcase_15 AC 53 ms
66,048 KB
testcase_16 AC 55 ms
71,288 KB
testcase_17 AC 70 ms
82,304 KB
testcase_18 AC 74 ms
76,672 KB
testcase_19 AC 150 ms
108,916 KB
testcase_20 AC 227 ms
120,360 KB
testcase_21 AC 40 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = list(map(int, input().split()))
a = list(map(int, input().split()))
b = []
for i in range(0, (1 << n)):
    al = 0
    cnt = 0
    pro = 1
    for j in range(0, n):
        if i & (1 << j):
            al+=a[j]
            pro*=a[j]
            cnt+=1
        
    if cnt >= k:
        b.append(al)
        b.append(pro)
    

print(len(set(b)))
0