結果

問題 No.1463 Hungry Kanten
ユーザー ああいいああいい
提出日時 2021-12-27 15:28:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 112,544 KB
最終ジャッジ日時 2024-09-25 08:58:00
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,508 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 59 ms
69,372 KB
testcase_03 AC 187 ms
75,952 KB
testcase_04 AC 51 ms
64,696 KB
testcase_05 AC 292 ms
112,544 KB
testcase_06 AC 40 ms
52,152 KB
testcase_07 AC 40 ms
51,944 KB
testcase_08 AC 39 ms
53,368 KB
testcase_09 AC 40 ms
53,100 KB
testcase_10 AC 44 ms
60,900 KB
testcase_11 AC 48 ms
60,708 KB
testcase_12 AC 52 ms
63,764 KB
testcase_13 AC 50 ms
62,592 KB
testcase_14 AC 55 ms
64,856 KB
testcase_15 AC 57 ms
66,464 KB
testcase_16 AC 63 ms
70,708 KB
testcase_17 AC 73 ms
77,512 KB
testcase_18 AC 82 ms
76,548 KB
testcase_19 AC 155 ms
93,944 KB
testcase_20 AC 232 ms
97,452 KB
testcase_21 AC 45 ms
60,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))

s =set()
for i in range(1 << N):
    ans1 = 0
    ans2 = 1
    count = 0
    for j in range(N):
        mask = 1 << j
        if i & mask:
            count += 1
            ans1 += A[j]
            ans2 *= A[j]
    if count >= K:
        s.add(ans1)
        s.add(ans2)
print(len(s))
0