結果

問題 No.1463 Hungry Kanten
ユーザー convexineqconvexineq
提出日時 2021-04-03 05:54:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 134,728 KB
最終ジャッジ日時 2024-12-24 06:08:52
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 62 ms
65,664 KB
testcase_03 AC 137 ms
97,280 KB
testcase_04 AC 45 ms
58,880 KB
testcase_05 AC 200 ms
134,728 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 45 ms
51,712 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 43 ms
51,840 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 42 ms
52,480 KB
testcase_13 AC 50 ms
59,008 KB
testcase_14 AC 60 ms
63,616 KB
testcase_15 AC 55 ms
62,464 KB
testcase_16 AC 62 ms
65,920 KB
testcase_17 AC 68 ms
69,888 KB
testcase_18 AC 61 ms
68,736 KB
testcase_19 AC 131 ms
101,504 KB
testcase_20 AC 168 ms
117,876 KB
testcase_21 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
*a, = map(int,input().split())
N = 1<<n
s = [0]*N
p = [1]*N
v = [0]*N
for i in range(n):
    V = 1<<i
    for j in range(V):
        s[j+V] = s[j] + a[i] 
        p[j+V] = p[j] * a[i] 
        v[j+V] = v[j] + 1 
ans = set()
for i in range(N):
    if v[i] >= k:
        ans.add(s[i])
        ans.add(p[i])
print(len(ans))
0