結果

問題 No.1463 Hungry Kanten
ユーザー kimiyukikimiyuki
提出日時 2021-04-02 21:52:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 877 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 159,748 KB
最終ジャッジ日時 2024-06-06 09:19:29
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,688 KB
testcase_01 AC 61 ms
66,688 KB
testcase_02 AC 84 ms
79,008 KB
testcase_03 AC 299 ms
122,152 KB
testcase_04 AC 67 ms
71,296 KB
testcase_05 AC 347 ms
159,748 KB
testcase_06 AC 61 ms
66,560 KB
testcase_07 AC 58 ms
67,328 KB
testcase_08 AC 59 ms
66,688 KB
testcase_09 AC 66 ms
66,716 KB
testcase_10 AC 64 ms
69,248 KB
testcase_11 AC 66 ms
70,016 KB
testcase_12 AC 67 ms
71,424 KB
testcase_13 AC 67 ms
70,656 KB
testcase_14 AC 70 ms
73,984 KB
testcase_15 AC 79 ms
77,940 KB
testcase_16 AC 86 ms
79,904 KB
testcase_17 AC 100 ms
85,912 KB
testcase_18 AC 101 ms
78,876 KB
testcase_19 AC 183 ms
111,696 KB
testcase_20 AC 261 ms
125,696 KB
testcase_21 AC 64 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from typing import *

def solve(n: int, k: int, a: List[int]) -> int:
    constructed = []
    for x in range(2 ** n):
        s = 0
        p = 1
        popcount = 0
        for i in range(n):
            if x & (1 << i):
                s += a[i]
                p *= a[i]
                popcount += 1
        if k <= popcount:
            constructed.append(s)
            constructed.append(p)
    return len(set(constructed))


# generated by oj-template v4.7.2 (https://github.com/online-judge-tools/template-generator)
def main():
    import sys
    tokens = iter(sys.stdin.read().split())
    N = int(next(tokens))
    K = int(next(tokens))
    A = [None for _ in range(N)]
    for i in range(N):
        A[i] = int(next(tokens))
    assert next(tokens, None) is None
    a = solve(N, K, A)
    print(a)


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