結果

問題 No.1701 half price
ユーザー 👑 rin204rin204
提出日時 2021-10-13 18:54:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 75,788 KB
最終ジャッジ日時 2024-09-17 16:20:48
合計ジャッジ時間 3,139 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,968 KB
testcase_01 AC 33 ms
52,172 KB
testcase_02 AC 76 ms
72,504 KB
testcase_03 AC 34 ms
52,544 KB
testcase_04 AC 68 ms
72,188 KB
testcase_05 AC 39 ms
61,536 KB
testcase_06 AC 386 ms
75,788 KB
testcase_07 AC 299 ms
75,744 KB
testcase_08 WA -
testcase_09 AC 36 ms
59,556 KB
testcase_10 AC 32 ms
52,992 KB
testcase_11 AC 34 ms
52,608 KB
testcase_12 AC 34 ms
52,468 KB
testcase_13 AC 33 ms
52,576 KB
testcase_14 AC 33 ms
52,272 KB
testcase_15 AC 36 ms
60,400 KB
testcase_16 AC 33 ms
52,244 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 31 ms
53,004 KB
testcase_21 AC 388 ms
75,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = map(int, input().split())
A = list(map(int, input().split()))
ans = 0
for S in range(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