結果

問題 No.1701 half price
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-08 22:11:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-07-23 04:34:55
合計ジャッジ時間 3,836 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,332 KB
testcase_01 AC 42 ms
59,340 KB
testcase_02 AC 87 ms
76,096 KB
testcase_03 AC 42 ms
59,812 KB
testcase_04 AC 88 ms
75,912 KB
testcase_05 AC 46 ms
62,080 KB
testcase_06 AC 542 ms
75,780 KB
testcase_07 AC 542 ms
76,020 KB
testcase_08 WA -
testcase_09 AC 42 ms
60,252 KB
testcase_10 AC 38 ms
52,196 KB
testcase_11 AC 43 ms
60,352 KB
testcase_12 AC 42 ms
59,876 KB
testcase_13 AC 42 ms
59,552 KB
testcase_14 AC 42 ms
60,656 KB
testcase_15 AC 42 ms
60,772 KB
testcase_16 AC 38 ms
52,648 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,000 KB
testcase_21 AC 524 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A =list(map(int, input().split()))
ans = 0
import itertools
used = set()
for p in itertools.product(range(3), repeat=n):
    s = 0
    t = 0
    for j in range(n):
        if p[j] == 0:
            continue
        elif p[j] == 1:
            s += A[j]
            t |= (1<<j)
        else:
            s += A[j]//2
            t |= (1<<j)
    if s == w and t not in used:
        ans += 1
        used.add(t)
print(ans)
0