結果

問題 No.1701 half price
ユーザー flippergoflippergo
提出日時 2024-12-21 20:05:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 75,812 KB
最終ジャッジ日時 2024-12-21 20:06:12
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,764 KB
testcase_01 AC 41 ms
53,312 KB
testcase_02 AC 85 ms
73,304 KB
testcase_03 AC 44 ms
53,372 KB
testcase_04 AC 87 ms
73,716 KB
testcase_05 AC 51 ms
62,736 KB
testcase_06 AC 391 ms
75,812 KB
testcase_07 AC 260 ms
75,732 KB
testcase_08 WA -
testcase_09 AC 40 ms
52,204 KB
testcase_10 AC 39 ms
52,816 KB
testcase_11 AC 39 ms
52,868 KB
testcase_12 AC 40 ms
53,076 KB
testcase_13 AC 43 ms
52,796 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 40 ms
53,100 KB
testcase_16 AC 40 ms
53,428 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 38 ms
53,216 KB
testcase_21 AC 50 ms
62,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W = map(int,input().split())
A = list(map(int,input().split()))
ans = []
for i in range(1<<N):
    cnt = 0
    ind = []
    for k in range(N):
        if (i>>k)&1:
            cnt += A[k]
            ind.append(k)
    if cnt==W:
        ans.append(i)
    elif cnt>W:
        for j in range(1<<len(ind)):
            cnt = 0
            for k in range(len(ind)):
                if (j>>k)&1:
                    cnt += A[ind[k]]//2
                else:
                    cnt += A[ind[k]]
            if cnt==W:
                ans.append(i)
                break
print(len(ans))
0