結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 56 ms
65,664 KB
testcase_03 AC 133 ms
96,768 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 188 ms
134,732 KB
testcase_06 AC 36 ms
51,456 KB
testcase_07 AC 37 ms
51,456 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 38 ms
52,736 KB
testcase_13 AC 44 ms
59,008 KB
testcase_14 AC 51 ms
63,488 KB
testcase_15 AC 49 ms
62,336 KB
testcase_16 AC 53 ms
66,688 KB
testcase_17 AC 60 ms
70,016 KB
testcase_18 AC 55 ms
68,992 KB
testcase_19 AC 120 ms
101,504 KB
testcase_20 AC 151 ms
117,624 KB
testcase_21 AC 37 ms
52,352 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