結果

問題 No.1701 half price
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-10-08 22:08:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 662 ms / 3,000 ms
コード長 457 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-23 04:29:19
合計ジャッジ時間 4,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 44 ms
59,136 KB
testcase_02 AC 104 ms
76,288 KB
testcase_03 AC 43 ms
59,136 KB
testcase_04 AC 108 ms
76,032 KB
testcase_05 AC 50 ms
62,976 KB
testcase_06 AC 661 ms
76,416 KB
testcase_07 AC 662 ms
76,544 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 41 ms
59,520 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 40 ms
59,392 KB
testcase_12 AC 41 ms
59,392 KB
testcase_13 AC 41 ms
59,008 KB
testcase_14 AC 40 ms
59,136 KB
testcase_15 AC 40 ms
59,008 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 315 ms
76,928 KB
testcase_18 AC 52 ms
64,768 KB
testcase_19 AC 56 ms
68,480 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 656 ms
75,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""
from sys import stdin
import sys

N,W = map(int,stdin.readline().split())

a = list(map(int,stdin.readline().split()))

ans = set()
for i in range(3**N):

    now = 0
    s = []
    for j in range(N):
        if i % 3 == 0:
            now += a[j]
        elif i % 3 == 1:
            now += a[j] // 2
        else:
            s.append(j)
        i //= 3

    s.sort()
    if now == W and len(s) != N:
        ans.add(tuple(s))

print (len(ans))
0