結果
問題 | No.1701 half price |
ユーザー | k_o_pasture |
提出日時 | 2021-10-08 23:28:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 449 ms / 3,000 ms |
コード長 | 772 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 100,836 KB |
最終ジャッジ日時 | 2024-07-23 07:33:31 |
合計ジャッジ時間 | 3,708 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,352 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 105 ms
76,664 KB |
testcase_03 | AC | 43 ms
52,480 KB |
testcase_04 | AC | 101 ms
76,416 KB |
testcase_05 | AC | 55 ms
61,952 KB |
testcase_06 | AC | 443 ms
83,072 KB |
testcase_07 | AC | 449 ms
83,276 KB |
testcase_08 | AC | 42 ms
52,096 KB |
testcase_09 | AC | 44 ms
52,480 KB |
testcase_10 | AC | 41 ms
52,224 KB |
testcase_11 | AC | 43 ms
52,352 KB |
testcase_12 | AC | 43 ms
51,968 KB |
testcase_13 | AC | 45 ms
52,608 KB |
testcase_14 | AC | 44 ms
52,224 KB |
testcase_15 | AC | 41 ms
52,480 KB |
testcase_16 | AC | 40 ms
52,096 KB |
testcase_17 | AC | 287 ms
100,836 KB |
testcase_18 | AC | 54 ms
64,256 KB |
testcase_19 | AC | 66 ms
69,888 KB |
testcase_20 | AC | 43 ms
52,480 KB |
testcase_21 | AC | 436 ms
83,208 KB |
ソースコード
from itertools import product import sys def main(): input = sys.stdin.readline N,W = map(int,input().split()) A = list(map(int,input().split())) bit_lst = list(product([False, True], repeat=N)) goods_lst = [] for bits in bit_lst[1:]: goods = [] for i, bit in enumerate(bits): if bit: goods.append(A[i]) goods_lst.append(goods) # print(goods_lst) receipt = [] for goods, bits in zip(goods_lst, bit_lst[1:]): even_lst = list(product([False, True], repeat=len(goods))) # print(even_lst, goods) for evens in even_lst: yen = 0 for i, even in enumerate(evens): if even: yen += goods[i] else: yen += goods[i] // 2 if W == yen: receipt.append(bits) print(len(set(receipt))) if __name__ == '__main__': main()