結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 40 ms
60,020 KB
testcase_02 AC 91 ms
76,064 KB
testcase_03 AC 41 ms
59,276 KB
testcase_04 AC 90 ms
76,052 KB
testcase_05 AC 50 ms
62,732 KB
testcase_06 AC 541 ms
75,908 KB
testcase_07 AC 543 ms
75,968 KB
testcase_08 WA -
testcase_09 AC 41 ms
59,708 KB
testcase_10 AC 38 ms
53,016 KB
testcase_11 AC 41 ms
59,808 KB
testcase_12 AC 42 ms
60,208 KB
testcase_13 AC 41 ms
59,916 KB
testcase_14 AC 42 ms
60,016 KB
testcase_15 AC 41 ms
60,052 KB
testcase_16 AC 37 ms
53,560 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
52,764 KB
testcase_21 AC 527 ms
76,108 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

    if now == W:
        ans.add(tuple(s))

print (len(ans))
0