結果

問題 No.1701 half price
ユーザー playerplayer
提出日時 2024-01-16 02:49:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 339,848 KB
最終ジャッジ日時 2024-09-28 02:26:18
合計ジャッジ時間 8,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 44 ms
60,160 KB
testcase_02 AC 219 ms
103,660 KB
testcase_03 AC 50 ms
59,904 KB
testcase_04 AC 218 ms
103,400 KB
testcase_05 AC 68 ms
70,272 KB
testcase_06 AC 1,783 ms
339,588 KB
testcase_07 AC 1,826 ms
339,840 KB
testcase_08 WA -
testcase_09 AC 45 ms
60,288 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 43 ms
60,672 KB
testcase_12 AC 44 ms
60,032 KB
testcase_13 AC 45 ms
60,032 KB
testcase_14 AC 46 ms
60,416 KB
testcase_15 AC 45 ms
60,160 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 1,753 ms
339,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *

n, w = map(int, input().split())
a = list(map(int, input().split()))
ans = 0

sequences = list(product([0, 0.5, 1], repeat=n))
used = set()
for seq in sequences:
    seq = list(seq)
    lis = []
    cost = 0
    for i in range(n):
        if seq[i] != 0:
            lis.append(i)
        cost += int(seq[i] * a[i])
    tup = tuple(lis)
    if tup in used:
        continue
    if cost == w:
        ans += 1
        used.add(tup)

print(ans)

0