結果

問題 No.1701 half price
ユーザー wgrapewgrape
提出日時 2024-11-11 11:08:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 3,000 ms
コード長 437 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-11-11 11:08:54
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 42 ms
58,240 KB
testcase_02 AC 82 ms
61,056 KB
testcase_03 AC 42 ms
58,112 KB
testcase_04 AC 83 ms
61,312 KB
testcase_05 AC 47 ms
61,184 KB
testcase_06 AC 408 ms
61,216 KB
testcase_07 AC 390 ms
61,312 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 40 ms
57,900 KB
testcase_10 AC 37 ms
51,456 KB
testcase_11 AC 41 ms
57,984 KB
testcase_12 AC 41 ms
57,856 KB
testcase_13 AC 41 ms
57,856 KB
testcase_14 AC 41 ms
57,856 KB
testcase_15 AC 41 ms
57,856 KB
testcase_16 AC 36 ms
51,892 KB
testcase_17 AC 169 ms
61,952 KB
testcase_18 AC 46 ms
61,184 KB
testcase_19 AC 48 ms
61,056 KB
testcase_20 AC 36 ms
51,940 KB
testcase_21 AC 383 ms
60,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = set()
for status in range(1, 3 ** N):
    i = 0
    val = 0
    cond = 0
    while status:
        if status % 3 == 2:
            val += A[i]
            cond |= (1 << i)
        elif status % 3 == 1:
            val += A[i] // 2
            cond |= (1 << i)
        status //= 3
        i += 1
    if val == W:
        ans.add(cond)

print(len(ans))
            
0