結果

問題 No.1463 Hungry Kanten
ユーザー ああいいああいい
提出日時 2021-12-27 15:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 351 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,380 KB
最終ジャッジ日時 2024-09-25 08:57:50
合計ジャッジ時間 9,794 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 129 ms
11,520 KB
testcase_03 TLE -
testcase_04 AC 39 ms
10,624 KB
testcase_05 TLE -
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 34 ms
10,880 KB
testcase_13 AC 40 ms
10,752 KB
testcase_14 AC 52 ms
10,880 KB
testcase_15 AC 74 ms
10,752 KB
testcase_16 AC 128 ms
11,772 KB
testcase_17 AC 245 ms
14,080 KB
testcase_18 AC 465 ms
11,520 KB
testcase_19 AC 1,008 ms
20,800 KB
testcase_20 TLE -
testcase_21 AC 33 ms
10,752 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