結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 46 ms
64,256 KB
testcase_02 AC 76 ms
75,648 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 43 ms
62,080 KB
testcase_05 AC 33 ms
51,712 KB
testcase_06 AC 42 ms
61,568 KB
testcase_07 AC 47 ms
62,080 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 32 ms
51,584 KB
testcase_11 AC 33 ms
51,584 KB
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 45 ms
61,952 KB
testcase_14 AC 34 ms
52,096 KB
testcase_15 AC 42 ms
61,696 KB
testcase_16 AC 56 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n < k:
    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