結果

問題 No.1463 Hungry Kanten
コンテスト
ユーザー Theta
提出日時 2024-03-28 17:55:33
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 365 ms / 2,000 ms
+ 512µs
コード長 422 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 936 ms
コンパイル使用メモリ 21,412 KB
実行使用メモリ 35,572 KB
最終ジャッジ日時 2026-07-12 10:15:27
合計ジャッジ時間 5,740 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from functools import reduce
from itertools import combinations
from operator import mul


def main():
    N, K = map(int, input().split())
    A = list(map(int, input().split()))

    nums_eat = set()
    for k in range(K, N + 1):
        for nums in combinations(A, r=k):
            nums_eat.add(sum(nums))
            nums_eat.add(reduce(mul, nums, 1))
    print(len(nums_eat))


if __name__ == "__main__":
    main()
0