結果

問題 No.1701 half price
ユーザー ああいいああいい
提出日時 2022-01-10 00:01:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-14 10:37:48
合計ジャッジ時間 3,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 41 ms
59,792 KB
testcase_02 AC 83 ms
70,112 KB
testcase_03 AC 42 ms
60,000 KB
testcase_04 AC 82 ms
70,724 KB
testcase_05 AC 48 ms
62,140 KB
testcase_06 AC 515 ms
75,776 KB
testcase_07 AC 513 ms
76,032 KB
testcase_08 WA -
testcase_09 AC 41 ms
60,648 KB
testcase_10 AC 36 ms
52,424 KB
testcase_11 AC 41 ms
60,408 KB
testcase_12 AC 42 ms
59,444 KB
testcase_13 AC 42 ms
59,488 KB
testcase_14 AC 42 ms
59,564 KB
testcase_15 AC 42 ms
59,612 KB
testcase_16 AC 37 ms
52,060 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
53,064 KB
testcase_21 AC 501 ms
75,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = set()
for bit in range(3 ** N):
    nedan = 0
    b = 0
    for j in range(N):
        if bit % 3 == 0:
            pass
        elif bit % 3 == 1:
            nedan += a[j]
            b ^= (1 << j)
        else:
            nedan += a[j] // 2
            b ^= (1 << j)
        bit //= 3
    if nedan == W:
        ans.add(b)
print(len(ans))
0