結果

問題 No.1701 half price
ユーザー ygd.ygd.
提出日時 2021-10-10 10:39:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 662 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-09-14 04:56:08
合計ジャッジ時間 4,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,976 KB
testcase_01 AC 44 ms
59,368 KB
testcase_02 AC 109 ms
75,332 KB
testcase_03 AC 46 ms
60,632 KB
testcase_04 AC 111 ms
75,584 KB
testcase_05 AC 54 ms
63,500 KB
testcase_06 AC 619 ms
75,592 KB
testcase_07 AC 629 ms
75,784 KB
testcase_08 WA -
testcase_09 AC 44 ms
58,504 KB
testcase_10 AC 40 ms
51,952 KB
testcase_11 AC 43 ms
58,808 KB
testcase_12 AC 43 ms
59,676 KB
testcase_13 AC 44 ms
59,536 KB
testcase_14 AC 44 ms
60,392 KB
testcase_15 AC 44 ms
60,628 KB
testcase_16 AC 39 ms
52,864 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
53,236 KB
testcase_21 AC 623 ms
75,380 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([])
    for L in itertools.product(sgn,repeat=N):
        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(len(ans))



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