結果

問題 No.1701 half price
ユーザー tktk_snsntktk_snsn
提出日時 2021-10-08 22:03:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 565 ms / 3,000 ms
コード長 394 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,092 KB
最終ジャッジ日時 2024-07-23 04:18:49
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,852 KB
testcase_01 AC 42 ms
60,036 KB
testcase_02 AC 87 ms
67,724 KB
testcase_03 AC 41 ms
60,756 KB
testcase_04 AC 82 ms
66,940 KB
testcase_05 AC 49 ms
62,392 KB
testcase_06 AC 565 ms
75,564 KB
testcase_07 AC 552 ms
76,092 KB
testcase_08 AC 38 ms
53,644 KB
testcase_09 AC 43 ms
59,608 KB
testcase_10 AC 37 ms
52,816 KB
testcase_11 AC 43 ms
60,024 KB
testcase_12 AC 43 ms
60,628 KB
testcase_13 AC 43 ms
59,436 KB
testcase_14 AC 43 ms
59,900 KB
testcase_15 AC 41 ms
60,156 KB
testcase_16 AC 37 ms
52,576 KB
testcase_17 AC 182 ms
75,700 KB
testcase_18 AC 48 ms
62,892 KB
testcase_19 AC 51 ms
64,108 KB
testcase_20 AC 37 ms
52,152 KB
testcase_21 AC 555 ms
75,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
A = list(map(int, input().split()))

ans = set()
for S in range(3 ** N):
    tot = 0
    buy = 0
    for i, a in enumerate(A):
        if S % 3 == 0:
            tot += a
            buy |= (1 << i)
        elif S % 3 == 1:
            tot += a // 2
            buy |= (1 << i)
        S //= 3
    if W == tot and buy != 0:
        ans.add(buy)

print(len(ans))
0