結果
問題 | No.1701 half price |
ユーザー | mesame3993 |
提出日時 | 2021-10-08 23:04:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 535 bytes |
コンパイル時間 | 391 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 81,932 KB |
最終ジャッジ日時 | 2024-07-23 06:28:43 |
合計ジャッジ時間 | 4,612 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,152 KB |
testcase_01 | AC | 38 ms
53,416 KB |
testcase_02 | AC | 156 ms
77,632 KB |
testcase_03 | AC | 38 ms
53,276 KB |
testcase_04 | WA | - |
testcase_05 | AC | 54 ms
66,988 KB |
testcase_06 | AC | 738 ms
81,772 KB |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
53,404 KB |
testcase_09 | AC | 39 ms
53,908 KB |
testcase_10 | AC | 36 ms
52,564 KB |
testcase_11 | AC | 38 ms
53,788 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 38 ms
53,400 KB |
testcase_16 | AC | 37 ms
52,736 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 38 ms
53,540 KB |
testcase_21 | AC | 639 ms
81,608 KB |
ソースコード
from itertools import product n, w = map(int, input().split()) a = list(map(int, input().split())) if w == 0: print(a.count(0)) exit() b = [i // 2 for i in a] ans = 0 it = [] items = [i for i in range(n)] for bits in product([0, 1], repeat=n): tmp = [[x] for x, bit in zip(items, bits) if bit == 1] if tmp == []: continue it.append(tmp) for i in it: l = [] for j in range(len(i)): l.append([a[j], b[j]]) st = [] for k in product(*l): k = sorted(k) if sum(k) == w and k not in st: st.append(k) ans += 1 print(ans)