結果

問題 No.822 Bitwise AND
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-28 23:11:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,818 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-06-26 06:53:25
合計ジャッジ時間 6,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 876 ms
68,992 KB
testcase_01 AC 271 ms
65,408 KB
testcase_02 AC 1,818 ms
72,320 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 64 ms
63,232 KB
testcase_05 AC 48 ms
58,496 KB
testcase_06 AC 56 ms
61,824 KB
testcase_07 AC 65 ms
63,104 KB
testcase_08 AC 57 ms
61,952 KB
testcase_09 AC 57 ms
62,720 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 57 ms
62,336 KB
testcase_13 AC 69 ms
63,104 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 55 ms
61,952 KB
testcase_16 AC 705 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

U = 18
N, K = map(int, input().split())
if N < K:
    print("INF")
    exit()

bit = []
for i in reversed(range(U)):
    if ~(N >> i) & 1:
        bit.append(1 << i)
bit.reverse()

sz = len(bit)
val = [0] * (1 << sz)
for S in range(1 << sz):
    for i, b in enumerate(bit):
        if (S >> i) & 1:
            val[S] += b

ans = 0
mask_all = (1 << sz) - 1
for S, x in enumerate(val):
    T = mask_all ^ S
    mask = T
    while True:
        if 0 <= x - val[mask] <= K:
            ans += 1
        if not mask:
            break
        mask = (mask - 1) & T
print(ans)
0