結果

問題 No.1701 half price
ユーザー ygd.ygd.
提出日時 2021-10-10 10:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 3,000 ms
コード長 794 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,808 KB
最終ジャッジ日時 2024-09-14 05:00:23
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,768 KB
testcase_01 AC 42 ms
60,088 KB
testcase_02 AC 107 ms
75,308 KB
testcase_03 AC 42 ms
59,616 KB
testcase_04 AC 107 ms
75,416 KB
testcase_05 AC 51 ms
64,132 KB
testcase_06 AC 579 ms
75,732 KB
testcase_07 AC 589 ms
75,896 KB
testcase_08 AC 38 ms
52,068 KB
testcase_09 AC 42 ms
58,348 KB
testcase_10 AC 37 ms
53,196 KB
testcase_11 AC 42 ms
60,612 KB
testcase_12 AC 43 ms
58,952 KB
testcase_13 AC 44 ms
60,456 KB
testcase_14 AC 44 ms
60,276 KB
testcase_15 AC 42 ms
58,628 KB
testcase_16 AC 37 ms
53,228 KB
testcase_17 AC 388 ms
76,808 KB
testcase_18 AC 54 ms
66,248 KB
testcase_19 AC 60 ms
74,216 KB
testcase_20 AC 39 ms
53,808 KB
testcase_21 AC 576 ms
76,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
#input = sys.stdin.buffer.readline
import itertools

def main():
    N,W = map(int,input().split())
    A = list(map(int,input().split()))
    sgn = [0,1,2]
    ans = set([])
    Flag = True
    for L in itertools.product(sgn,repeat=N):
        if Flag: #最初は空集合
            Flag = False
            continue
        #print(L)
        temp = 0
        used = []
        for i,x in enumerate(L):
            if x == 1:
                temp += A[i]
                used.append(i)
            if x == 2:
                temp += A[i]//2
                used.append(i)
        if temp == W:
            used.sort()
            tused = tuple(used)
            ans.add(tused)
    #print(ans)
    print(len(ans))



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