結果

問題 No.1463 Hungry Kanten
ユーザー Kanten4205Kanten4205
提出日時 2021-03-07 22:08:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 813 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 118,716 KB
最終ジャッジ日時 2024-06-06 09:05:54
合計ジャッジ時間 5,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 75 ms
70,636 KB
testcase_03 AC 535 ms
118,708 KB
testcase_04 AC 51 ms
63,744 KB
testcase_05 AC 813 ms
118,716 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 45 ms
59,776 KB
testcase_11 AC 50 ms
60,544 KB
testcase_12 AC 52 ms
62,720 KB
testcase_13 AC 51 ms
62,464 KB
testcase_14 AC 62 ms
66,688 KB
testcase_15 AC 58 ms
66,560 KB
testcase_16 AC 80 ms
71,168 KB
testcase_17 AC 146 ms
82,888 KB
testcase_18 AC 93 ms
76,160 KB
testcase_19 AC 410 ms
94,404 KB
testcase_20 AC 573 ms
102,544 KB
testcase_21 AC 46 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N, K = list(map(int, input().split()))
A = list(map(int, input().split()))
B = [0]
for i in range(0, (1 << N)):
    sums = 0
    num = 0
    times = 1
    for j in range(0, N):
        if i & (1 << j):
            sums = sums + A[j]
            times = times * A[j]
            num = num + 1
        
    if num >= K:
        B.append(sums)
        B.append(times)
    
C = sorted(B)
ans = 0
for i in range(1, len(C)):
    if C[i-1] != C[i]:
        ans = ans + 1
    
print(ans)
0