結果

問題 No.1701 half price
ユーザー ThetaTheta
提出日時 2024-03-28 18:47:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,084 KB
最終ジャッジ日時 2024-09-30 14:49:19
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 43 ms
58,624 KB
testcase_02 AC 104 ms
75,764 KB
testcase_03 AC 42 ms
59,008 KB
testcase_04 AC 103 ms
75,392 KB
testcase_05 AC 48 ms
62,976 KB
testcase_06 AC 559 ms
75,648 KB
testcase_07 AC 564 ms
75,520 KB
testcase_08 WA -
testcase_09 AC 41 ms
58,624 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 41 ms
58,624 KB
testcase_12 AC 40 ms
58,368 KB
testcase_13 AC 40 ms
58,968 KB
testcase_14 AC 41 ms
58,368 KB
testcase_15 AC 40 ms
58,496 KB
testcase_16 AC 35 ms
51,456 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 562 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product


def main():
    N, W = map(int, input().split())
    a = list(map(int, input().split()))
    ctr = set()
    for bit_3 in product(range(3), repeat=N):
        tmp_sum = 0
        tmp_bit_n = 0
        for idx, (bit, v) in enumerate(zip(bit_3, a)):
            match bit:
                case 0:
                    pass
                case 1:
                    tmp_sum += v
                    tmp_bit_n += 2**idx
                case 2:
                    tmp_sum += v // 2
                    tmp_bit_n += 2**idx
        if tmp_sum == W:
            ctr.add(tmp_bit_n)
    print(len(ctr))


if __name__ == "__main__":
    main()
0