結果

問題 No.822 Bitwise AND
ユーザー maspymaspy
提出日時 2020-02-25 23:59:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,152 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,612 KB
最終ジャッジ日時 2024-06-25 18:19:14
合計ジャッジ時間 15,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,152 ms
46,612 KB
testcase_01 AC 533 ms
44,188 KB
testcase_02 AC 537 ms
44,192 KB
testcase_03 AC 532 ms
44,196 KB
testcase_04 AC 1,146 ms
46,344 KB
testcase_05 AC 829 ms
46,104 KB
testcase_06 AC 1,063 ms
46,600 KB
testcase_07 AC 1,125 ms
46,340 KB
testcase_08 AC 539 ms
44,036 KB
testcase_09 AC 534 ms
43,680 KB
testcase_10 AC 545 ms
44,320 KB
testcase_11 AC 534 ms
44,192 KB
testcase_12 AC 531 ms
44,192 KB
testcase_13 AC 536 ms
43,812 KB
testcase_14 AC 532 ms
44,196 KB
testcase_15 AC 856 ms
46,228 KB
testcase_16 AC 537 ms
44,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
import numpy as np

# %%
N, K = map(int, read().split())


# %%
def solve_fixed_k(N, K):
    n = max(N, K).bit_length()
    x = np.arange(1 << n + 1, dtype=np.int32)
    y = x + K
    cond = (x & y == N)
    if np.any(cond & (x ^ y >= (1 << n))):
        return None
    else:
        return np.count_nonzero(cond)


# %%
answer = 0
for k in range(K + 1):
    x = solve_fixed_k(N, k)
    if x is None:
        answer = 'INF'
        break
    answer += x

# %%
print(answer)
0