結果

問題 No.822 Bitwise AND
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-26 17:02:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,136 KB
最終ジャッジ日時 2024-06-02 11:33:34
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 45 ms
64,640 KB
testcase_02 AC 79 ms
75,648 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 41 ms
62,080 KB
testcase_05 AC 32 ms
52,608 KB
testcase_06 AC 40 ms
61,184 KB
testcase_07 AC 41 ms
62,080 KB
testcase_08 AC 32 ms
51,968 KB
testcase_09 AC 31 ms
52,008 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 32 ms
52,224 KB
testcase_13 AC 41 ms
62,336 KB
testcase_14 AC 31 ms
52,608 KB
testcase_15 AC 42 ms
62,208 KB
testcase_16 AC 57 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

if n == 0 and k != 0:
    print('INF')
    exit()

B = []
for i in range(18):
    if (n>>i)&1:
        continue
    else:
        if i <= 10:
            B.append(i)

#print(B)
m = len(B)
ans = 0
import itertools
for p in itertools.product(range(3), repeat=m):
    d = 0
    for j in range(m):
        b = B[j]
        if p[j] == 0:
            continue
        elif p[j] == 1:
            d += 1<<b
        else:
            d -= 1<<b
    if 0 <= d <= k:
        ans += 1
print(ans)
0