結果

問題 No.1701 half price
ユーザー 👑 KazunKazun
提出日時 2021-10-08 22:00:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 3,000 ms
コード長 358 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,124 KB
最終ジャッジ日時 2024-07-23 04:12:37
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,200 KB
testcase_01 AC 41 ms
59,244 KB
testcase_02 AC 84 ms
70,556 KB
testcase_03 AC 41 ms
59,212 KB
testcase_04 AC 86 ms
70,308 KB
testcase_05 AC 48 ms
62,804 KB
testcase_06 AC 534 ms
75,840 KB
testcase_07 AC 533 ms
76,124 KB
testcase_08 AC 37 ms
52,460 KB
testcase_09 AC 41 ms
59,884 KB
testcase_10 AC 36 ms
52,208 KB
testcase_11 AC 42 ms
59,136 KB
testcase_12 AC 42 ms
59,156 KB
testcase_13 AC 42 ms
59,180 KB
testcase_14 AC 41 ms
59,884 KB
testcase_15 AC 41 ms
59,104 KB
testcase_16 AC 36 ms
53,136 KB
testcase_17 AC 170 ms
75,792 KB
testcase_18 AC 47 ms
62,304 KB
testcase_19 AC 47 ms
62,220 KB
testcase_20 AC 37 ms
53,512 KB
testcase_21 AC 517 ms
75,716 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 and beta>0:
        S.add(beta)

print(len(S))
0