結果

問題 No.1463 Hungry Kanten
ユーザー kept1994kept1994
提出日時 2021-09-01 00:06:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 109,792 KB
最終ジャッジ日時 2024-11-26 11:52:37
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,544 KB
testcase_01 AC 39 ms
52,960 KB
testcase_02 AC 50 ms
64,852 KB
testcase_03 AC 137 ms
75,012 KB
testcase_04 AC 39 ms
53,700 KB
testcase_05 AC 247 ms
109,792 KB
testcase_06 AC 39 ms
53,128 KB
testcase_07 AC 39 ms
53,632 KB
testcase_08 AC 39 ms
52,220 KB
testcase_09 AC 38 ms
52,996 KB
testcase_10 AC 39 ms
52,344 KB
testcase_11 AC 43 ms
58,128 KB
testcase_12 AC 44 ms
59,432 KB
testcase_13 AC 43 ms
59,332 KB
testcase_14 AC 50 ms
63,132 KB
testcase_15 AC 45 ms
60,292 KB
testcase_16 AC 50 ms
64,984 KB
testcase_17 AC 62 ms
74,436 KB
testcase_18 AC 49 ms
65,064 KB
testcase_19 AC 141 ms
90,784 KB
testcase_20 AC 163 ms
95,500 KB
testcase_21 AC 43 ms
59,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    from itertools import combinations
    N, K = map(int,input().split())
    A = list(map(int, input().split()))
    res = set()
    for kk in range(K, N + 1):
        for p in combinations(A, kk):
            sum = 0
            mul = 1
            for i in p:
                sum += i
                mul *= i
            res.add(sum)
            res.add(mul)
    # print(res)
    print(len(res))
        
if __name__ == '__main__':
    main()
0