結果

問題 No.1463 Hungry Kanten
ユーザー lloyzlloyz
提出日時 2022-03-14 21:14:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 113,860 KB
最終ジャッジ日時 2024-09-21 09:23:45
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 64 ms
68,252 KB
testcase_03 AC 151 ms
75,648 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 256 ms
113,860 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 38 ms
52,340 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 41 ms
58,112 KB
testcase_12 AC 44 ms
59,776 KB
testcase_13 AC 44 ms
59,392 KB
testcase_14 AC 56 ms
65,280 KB
testcase_15 AC 45 ms
60,032 KB
testcase_16 AC 55 ms
68,352 KB
testcase_17 AC 75 ms
80,640 KB
testcase_18 AC 54 ms
68,096 KB
testcase_19 AC 137 ms
90,456 KB
testcase_20 AC 173 ms
97,672 KB
testcase_21 AC 43 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

n, k = map(int, input().split())
A = list(map(int, input().split()))

ANS = set()
for r in range(k, n + 1):
    for C in combinations(range(n), r):
        add_temp = 0
        product_temp = 1
        for idx in C:
            add_temp += A[idx]
            product_temp *= A[idx]
        ANS.add(add_temp)
        ANS.add(product_temp)
print(len(ANS))
0