結果

問題 No.822 Bitwise AND
ユーザー hedwig100hedwig100
提出日時 2020-04-21 20:45:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 829 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 10,976 KB
実行使用メモリ 8,584 KB
最終ジャッジ日時 2023-09-08 01:15:21
合計ジャッジ時間 1,461 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 18 ms
8,568 KB
testcase_02 AC 19 ms
8,420 KB
testcase_03 AC 19 ms
8,560 KB
testcase_04 AC 28 ms
8,584 KB
testcase_05 AC 21 ms
8,428 KB
testcase_06 AC 27 ms
8,512 KB
testcase_07 AC 29 ms
8,476 KB
testcase_08 AC 28 ms
8,376 KB
testcase_09 AC 23 ms
8,536 KB
testcase_10 AC 19 ms
8,448 KB
testcase_11 AC 19 ms
8,368 KB
testcase_12 AC 28 ms
8,372 KB
testcase_13 AC 20 ms
8,572 KB
testcase_14 AC 20 ms
8,572 KB
testcase_15 AC 21 ms
8,420 KB
testcase_16 AC 19 ms
8,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 ** 9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  copy import deepcopy
from bisect import bisect_left

def main():
    n,k = map(int,input().split())
    if n == 0:
        if k == 0:
            print(1)
        else:
            print('INF')
        return

    m = 0
    for i in range(50):
        if (n>>i)&1:
            m = max(m,i)
    
    bit_sum = pow(2,m + 1) - n - 1
    lower_limit = pow(2,m)
    if lower_limit * 2 <= k + bit_sum:
        print('INF')
        return
    
    upper_limit = 1
    while upper_limit < k:
        upper_limit *= 2
        
    ans = 0
    for x in range(n,n + upper_limit + 1):
        for y in range(x,x + k + 1):
            if x&y == n:
                ans += 1  
    print(ans)
if __name__ == '__main__':
    main() 
0