結果

問題 No.1701 half price
ユーザー tnodinotnodino
提出日時 2022-05-24 21:26:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 544 ms / 3,000 ms
コード長 434 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 76,344 KB
最終ジャッジ日時 2024-09-20 14:31:13
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,824 KB
testcase_01 AC 43 ms
60,048 KB
testcase_02 AC 82 ms
70,212 KB
testcase_03 AC 49 ms
60,520 KB
testcase_04 AC 83 ms
71,740 KB
testcase_05 AC 48 ms
62,060 KB
testcase_06 AC 539 ms
75,652 KB
testcase_07 AC 544 ms
76,344 KB
testcase_08 AC 38 ms
52,032 KB
testcase_09 AC 43 ms
58,932 KB
testcase_10 AC 38 ms
53,260 KB
testcase_11 AC 41 ms
59,200 KB
testcase_12 AC 42 ms
59,552 KB
testcase_13 AC 42 ms
59,804 KB
testcase_14 AC 42 ms
60,768 KB
testcase_15 AC 42 ms
59,332 KB
testcase_16 AC 36 ms
53,076 KB
testcase_17 AC 166 ms
75,784 KB
testcase_18 AC 48 ms
61,800 KB
testcase_19 AC 50 ms
61,720 KB
testcase_20 AC 38 ms
52,752 KB
testcase_21 AC 516 ms
76,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
a = list(map(int,input().split()))
ans = set()
for bit in range(1,3**N):
    ret = 0
    x = bit
    b = 0
    for i in range(N):
        if x % 3 == 0:
            pass
        else:
            if x % 3 == 2:
                ret += a[i] // 2
            elif x % 3 == 1:
                ret += a[i]
            b += 1
        x //= 3
        b <<= 1
    if ret == W:
        ans.add(b)
print(len(ans))
0