結果

問題 No.1701 half price
ユーザー tnodinotnodino
提出日時 2022-05-24 21:26:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-09-20 14:31:03
合計ジャッジ時間 3,487 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 43 ms
59,136 KB
testcase_02 AC 83 ms
69,376 KB
testcase_03 AC 43 ms
59,520 KB
testcase_04 AC 82 ms
70,016 KB
testcase_05 AC 49 ms
61,952 KB
testcase_06 AC 519 ms
75,980 KB
testcase_07 AC 517 ms
75,776 KB
testcase_08 WA -
testcase_09 AC 41 ms
58,752 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 40 ms
59,008 KB
testcase_12 AC 41 ms
59,520 KB
testcase_13 AC 41 ms
58,752 KB
testcase_14 AC 41 ms
58,752 KB
testcase_15 AC 40 ms
58,752 KB
testcase_16 AC 35 ms
51,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
52,096 KB
testcase_21 AC 489 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
a = list(map(int,input().split()))
ans = set()
for bit in range(3**N):
    ret = 0
    x = bit
    b = 0
    for i in range(N):
        if x % 3 == 0:
            pass
        else:
            if x % 3 == 2:
                ret += a[i] // 2
            elif x % 3 == 1:
                ret += a[i]
            b += 1
        x //= 3
        b <<= 1
    if ret == W:
        ans.add(b)
print(len(ans))
0