結果

問題 No.822 Bitwise AND
ユーザー kohei2019kohei2019
提出日時 2022-04-20 00:13:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-10 21:45:40
合計ジャッジ時間 2,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
76,160 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 127 ms
66,432 KB
testcase_05 AC 69 ms
62,336 KB
testcase_06 AC 99 ms
62,848 KB
testcase_07 AC 122 ms
66,432 KB
testcase_08 AC 42 ms
58,496 KB
testcase_09 AC 41 ms
58,496 KB
testcase_10 AC 40 ms
59,008 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 46 ms
58,880 KB
testcase_13 AC 44 ms
58,496 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 79 ms
63,744 KB
testcase_16 AC 35 ms
51,712 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(N+1):
    for j in range(0,K+1):
        x = i+N
        y = x+j
        if x & y == N:
            cnt += 1
            if not (len(bin(x)) == len(bin(y))):
                print('INF')
                exit()
print(cnt)
0