結果

問題 No.822 Bitwise AND
ユーザー hedwig100hedwig100
提出日時 2020-04-21 20:10:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-04-17 11:01:39
合計ジャッジ時間 10,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,510 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 1,474 ms
10,880 KB
testcase_05 AC 726 ms
10,880 KB
testcase_06 AC 1,329 ms
10,880 KB
testcase_07 AC 1,521 ms
10,880 KB
testcase_08 AC 41 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 42 ms
10,880 KB
testcase_13 AC 37 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 820 ms
11,008 KB
testcase_16 AC 31 ms
10,880 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)
    
    lower_limit = pow(2,m)
    if lower_limit * 2 <= k:
        print('INF')
        return
    
    ans = 0
    for x in range(lower_limit,lower_limit * 2):
        for y in range(x,x + k + 1):
            if x&y == n:
                ans += 1  
    print(ans)
if __name__ == '__main__':
    main() 
0