結果

問題 No.1463 Hungry Kanten
ユーザー MtSakaMtSaka
提出日時 2021-03-08 13:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,732 KB
最終ジャッジ日時 2024-06-06 09:06:39
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 64 ms
70,144 KB
testcase_03 AC 281 ms
113,848 KB
testcase_04 AC 55 ms
63,360 KB
testcase_05 AC 323 ms
148,732 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 45 ms
59,392 KB
testcase_11 AC 48 ms
60,928 KB
testcase_12 AC 53 ms
63,104 KB
testcase_13 AC 53 ms
62,464 KB
testcase_14 AC 60 ms
65,792 KB
testcase_15 AC 61 ms
66,304 KB
testcase_16 AC 65 ms
71,680 KB
testcase_17 AC 82 ms
81,920 KB
testcase_18 AC 86 ms
76,800 KB
testcase_19 AC 168 ms
108,664 KB
testcase_20 AC 238 ms
120,232 KB
testcase_21 AC 47 ms
59,904 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