結果

問題 No.1701 half price
ユーザー 👑 rin204rin204
提出日時 2021-10-13 18:55:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 390 ms / 3,000 ms
コード長 578 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 76,112 KB
最終ジャッジ日時 2024-09-17 16:20:52
合計ジャッジ時間 2,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,892 KB
testcase_01 AC 33 ms
52,140 KB
testcase_02 AC 68 ms
71,844 KB
testcase_03 AC 32 ms
52,084 KB
testcase_04 AC 67 ms
73,076 KB
testcase_05 AC 40 ms
62,140 KB
testcase_06 AC 385 ms
76,112 KB
testcase_07 AC 280 ms
75,644 KB
testcase_08 AC 36 ms
52,008 KB
testcase_09 AC 39 ms
59,076 KB
testcase_10 AC 35 ms
52,876 KB
testcase_11 AC 34 ms
52,976 KB
testcase_12 AC 35 ms
52,208 KB
testcase_13 AC 32 ms
52,840 KB
testcase_14 AC 34 ms
54,100 KB
testcase_15 AC 37 ms
59,668 KB
testcase_16 AC 35 ms
52,720 KB
testcase_17 AC 41 ms
60,568 KB
testcase_18 AC 35 ms
52,452 KB
testcase_19 AC 38 ms
59,728 KB
testcase_20 AC 31 ms
52,336 KB
testcase_21 AC 390 ms
75,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for S in range(1, 1 << n):
    T = S
    while T != 0:
        tot = 0
        for i in range(n):
            if S >> i & 1:
                if T >> i & 1:
                    tot += A[i] // 2
                else:
                    tot += A[i]
        if tot == w:
            ans += 1
            break
        T = (T - 1) & S
    else:
        tot = 0
        for i in range(n):
            if S >> i & 1:
                tot += A[i]
        if tot == w:
            ans += 1
    
    
print(ans)
0