結果

問題 No.822 Bitwise AND
ユーザー kohei2019kohei2019
提出日時 2022-04-20 00:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-06-10 21:44:00
合計ジャッジ時間 3,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
75,776 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 184 ms
72,320 KB
testcase_05 AC 103 ms
67,200 KB
testcase_06 AC 145 ms
67,456 KB
testcase_07 AC 188 ms
72,192 KB
testcase_08 AC 45 ms
59,776 KB
testcase_09 AC 44 ms
59,520 KB
testcase_10 AC 44 ms
59,904 KB
testcase_11 AC 38 ms
57,472 KB
testcase_12 AC 45 ms
59,520 KB
testcase_13 AC 44 ms
59,136 KB
testcase_14 AC 34 ms
51,456 KB
testcase_15 AC 117 ms
68,992 KB
testcase_16 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
ans = 0
if N == 0 and K ==0:
    print(1)
    exit()
if N == 0 and 0 < K:
    print('INF')
    exit()
cnt = 0
for i in range(2*N):
    for j in range(0,K+1):
        x = i
        y = i+j
        if x & y == N:
            cnt += 1
            if not (len(bin(x)) == len(bin(y))):
                print('INF')
                exit()
print(cnt)
0