結果

問題 No.1701 half price
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:00:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,048 KB
最終ジャッジ日時 2024-07-23 04:13:07
合計ジャッジ時間 2,974 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 74 ms
70,272 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 73 ms
69,888 KB
testcase_05 AC 46 ms
60,928 KB
testcase_06 AC 435 ms
75,776 KB
testcase_07 AC 318 ms
75,756 KB
testcase_08 WA -
testcase_09 AC 43 ms
58,752 KB
testcase_10 AC 38 ms
52,316 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 39 ms
52,608 KB
testcase_15 AC 43 ms
58,240 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
51,456 KB
testcase_21 AC 424 ms
76,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, W = map(int, input().split())
A = [int(a) for a in input().split()]
ans = 0
for i in range(1 << N):
    j = i + 1
    while j:
        j = (j - 1) & i
        s = 0
        for k in range(N):
            if j >> k & 1:
                s += A[k] // 2
            elif i >> k & 1:
                s += A[k]
        if s == W:
            ans += 1
            break
print(ans)
0