結果

問題 No.1701 half price
ユーザー 👑 KazunKazun
提出日時 2021-10-08 21:59:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-07-23 04:09:58
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 46 ms
59,136 KB
testcase_02 AC 88 ms
69,376 KB
testcase_03 AC 43 ms
59,392 KB
testcase_04 AC 90 ms
69,632 KB
testcase_05 AC 49 ms
61,824 KB
testcase_06 AC 540 ms
76,032 KB
testcase_07 AC 542 ms
75,776 KB
testcase_08 WA -
testcase_09 AC 44 ms
59,008 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 44 ms
59,136 KB
testcase_12 AC 43 ms
59,520 KB
testcase_13 AC 44 ms
59,136 KB
testcase_14 AC 43 ms
58,880 KB
testcase_15 AC 44 ms
58,752 KB
testcase_16 AC 40 ms
51,584 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
52,608 KB
testcase_21 AC 519 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

S=set()

for T in range(3**N):
    alpha=0
    beta=0

    for i in range(N):
        if T%3==0:
            alpha+=A[i]
            beta+=1<<i
        elif T%3==1:
            alpha+=A[i]//2
            beta+=1<<i

        T//=3

    if alpha==W:
        S.add(beta)

print(len(S))
0