結果
問題 | No.1701 half price |
ユーザー | titan23 |
提出日時 | 2022-07-03 03:41:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 392 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 67,456 KB |
最終ジャッジ日時 | 2024-05-06 05:35:43 |
合計ジャッジ時間 | 2,846 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
51,584 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 50 ms
59,520 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 42 ms
51,584 KB |
testcase_10 | AC | 42 ms
51,840 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 43 ms
51,968 KB |
testcase_15 | AC | 42 ms
51,840 KB |
testcase_16 | AC | 41 ms
51,712 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 44 ms
51,840 KB |
testcase_21 | AC | 75 ms
66,432 KB |
ソースコード
import sys input = lambda: sys.stdin.readline().rstrip() # ----------------------- # n, w = map(int, input().split()) A = list(map(int, input().split())) ans = set() for i in range(n+1): B = A[:] if i < n: B[i] //= 2 for bits in range(1 << n): tmp = 0 for j in range(n): if (bits >> j) & 1: tmp += B[j] if tmp == w: ans.add(bits) print(len(ans))