結果

問題 No.1463 Hungry Kanten
ユーザー Konton7Konton7
提出日時 2021-05-11 02:32:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 112,212 KB
最終ジャッジ日時 2024-09-21 08:36:11
合計ジャッジ時間 2,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 66 ms
69,120 KB
testcase_03 AC 189 ms
75,648 KB
testcase_04 AC 56 ms
62,848 KB
testcase_05 AC 284 ms
112,212 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 39 ms
51,584 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 46 ms
59,392 KB
testcase_11 AC 50 ms
60,416 KB
testcase_12 AC 53 ms
62,336 KB
testcase_13 AC 52 ms
62,464 KB
testcase_14 AC 57 ms
64,640 KB
testcase_15 AC 59 ms
66,560 KB
testcase_16 AC 69 ms
69,888 KB
testcase_17 AC 80 ms
77,660 KB
testcase_18 AC 84 ms
76,544 KB
testcase_19 AC 146 ms
94,164 KB
testcase_20 AC 211 ms
97,492 KB
testcase_21 AC 47 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(i) for i in input().split()]
num = [int(i) for i in input().split()]
ans = set([])

for i in range(1 << n):
    s = 0
    p = 1
    c = 0
    for j in range(n):
        if (i >> j) & 1:
            s += num[j]
            p *= num[j]
            c += 1
    if c >= k:
        ans.add(p)
        ans.add(s)
        
print(len(ans))  
0