結果

問題 No.1701 half price
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-10-19 22:11:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,646 ms / 3,000 ms
コード長 566 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,852 KB
最終ジャッジ日時 2024-09-20 06:26:51
合計ジャッジ時間 7,244 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,960 KB
testcase_01 AC 47 ms
62,044 KB
testcase_02 AC 239 ms
76,312 KB
testcase_03 AC 47 ms
62,372 KB
testcase_04 AC 240 ms
75,992 KB
testcase_05 AC 66 ms
73,432 KB
testcase_06 AC 1,646 ms
76,148 KB
testcase_07 AC 1,511 ms
76,484 KB
testcase_08 AC 35 ms
52,824 KB
testcase_09 AC 45 ms
62,564 KB
testcase_10 AC 35 ms
53,220 KB
testcase_11 AC 47 ms
62,364 KB
testcase_12 AC 45 ms
62,112 KB
testcase_13 AC 45 ms
62,544 KB
testcase_14 AC 45 ms
63,708 KB
testcase_15 AC 46 ms
62,824 KB
testcase_16 AC 36 ms
52,188 KB
testcase_17 AC 501 ms
76,852 KB
testcase_18 AC 66 ms
72,648 KB
testcase_19 AC 79 ms
76,412 KB
testcase_20 AC 35 ms
52,468 KB
testcase_21 AC 1,457 ms
76,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def base10to(n, b):
    if (int(n/b)):
        return base10to(int(n/b), b) + str(n%b)
    return str(n%b)

N, W = map(int, input().split())
a = list(map(int, input().split()))
answer = set([])

for n in range(3**N):
    flag_str = base10to(n, 3).rjust(N, '0')
    flag_str

    sum, key = 0, 0
    for i, flag in enumerate(flag_str):
        if flag == '1':
            sum += a[i]
            key += (1 << i)
        elif flag == '2':
            sum += a[i] // 2
            key += (1 << i)

    if sum == W:
        answer.add(key)

print(len(answer) - (W == 0))
0