結果

問題 No.1701 half price
ユーザー tassei903tassei903
提出日時 2021-10-08 22:18:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 3,000 ms
コード長 723 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-07-23 04:47:03
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 43 ms
59,392 KB
testcase_02 AC 88 ms
75,876 KB
testcase_03 AC 41 ms
58,752 KB
testcase_04 AC 89 ms
76,336 KB
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 569 ms
75,520 KB
testcase_07 AC 567 ms
76,288 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 42 ms
59,268 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 41 ms
59,392 KB
testcase_12 AC 41 ms
59,136 KB
testcase_13 AC 41 ms
59,136 KB
testcase_14 AC 42 ms
59,136 KB
testcase_15 AC 41 ms
59,008 KB
testcase_16 AC 37 ms
52,096 KB
testcase_17 AC 166 ms
76,276 KB
testcase_18 AC 46 ms
61,952 KB
testcase_19 AC 47 ms
61,824 KB
testcase_20 AC 36 ms
52,352 KB
testcase_21 AC 536 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from itertools import product
n,w = na()
a = na()
c = set()
for i in product(range(3), repeat  = n):
    s = 0
    d = 0
    for j in range(n):
        if i[j]>0:
            d+=1<<j
        if i[j]==1:
            s+=a[j]//2
        if i[j]==2:
            s+=a[j]
    if d==0:
        continue
    if s==w:
        c.add(d)

print(len(c))
0