結果

問題 No.1701 half price
ユーザー tassei903tassei903
提出日時 2021-10-08 22:17:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,412 KB
最終ジャッジ日時 2024-07-23 04:46:32
合計ジャッジ時間 3,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 46 ms
59,740 KB
testcase_02 AC 98 ms
75,936 KB
testcase_03 AC 43 ms
60,044 KB
testcase_04 AC 91 ms
75,968 KB
testcase_05 AC 50 ms
62,336 KB
testcase_06 AC 577 ms
76,412 KB
testcase_07 AC 573 ms
76,020 KB
testcase_08 WA -
testcase_09 AC 43 ms
59,696 KB
testcase_10 AC 38 ms
52,620 KB
testcase_11 AC 43 ms
59,188 KB
testcase_12 AC 44 ms
59,748 KB
testcase_13 AC 44 ms
60,564 KB
testcase_14 AC 43 ms
59,932 KB
testcase_15 AC 42 ms
60,128 KB
testcase_16 AC 37 ms
52,132 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
52,824 KB
testcase_21 AC 549 ms
76,240 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 s==w:
        c.add(d)

print(len(c))
0