結果

問題 No.1463 Hungry Kanten
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-12 08:26:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 161,364 KB
最終ジャッジ日時 2024-09-26 03:00:56
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,040 KB
testcase_01 AC 50 ms
55,296 KB
testcase_02 AC 95 ms
78,080 KB
testcase_03 AC 514 ms
125,824 KB
testcase_04 AC 59 ms
63,616 KB
testcase_05 AC 525 ms
161,364 KB
testcase_06 AC 49 ms
55,296 KB
testcase_07 AC 49 ms
55,680 KB
testcase_08 AC 49 ms
55,168 KB
testcase_09 AC 53 ms
55,168 KB
testcase_10 AC 65 ms
64,256 KB
testcase_11 AC 66 ms
64,768 KB
testcase_12 AC 75 ms
68,352 KB
testcase_13 AC 68 ms
65,536 KB
testcase_14 AC 85 ms
73,088 KB
testcase_15 AC 75 ms
72,192 KB
testcase_16 AC 97 ms
78,592 KB
testcase_17 AC 127 ms
83,688 KB
testcase_18 AC 112 ms
77,568 KB
testcase_19 AC 284 ms
113,108 KB
testcase_20 AC 379 ms
126,464 KB
testcase_21 AC 61 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
from itertools import *
from functools import *
from collections import *
import sys,math
input = sys.stdin.readline
import math
N,K = map(int,input().split())
A = list(map(int,input().split()))
X = []
for i in range(1<<N):
    
    if bin(i).count('1')<K:
        continue
    
    a = 0
    b = 1
    for j in range(N):
        if (i>>j)&1:
            a += A[j]
            b *= A[j]
    X += [a,b]
X = set(X)
print(len(X))
    
0