結果

問題 No.822 Bitwise AND
ユーザー kohei2019kohei2019
提出日時 2022-04-19 23:55:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 68,932 KB
最終ジャッジ日時 2024-06-10 21:27:03
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 41 ms
57,856 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
59,008 KB
testcase_09 AC 41 ms
58,752 KB
testcase_10 WA -
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 40 ms
58,880 KB
testcase_13 AC 35 ms
51,712 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 40 ms
58,624 KB
testcase_16 AC 35 ms
52,352 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(K+1):
    for j in range(i,K+1):
        x = i+N
        y = j+N
        if x & y == N:
            cnt += 1
            if not (len(bin(x)) == len(bin(y))):
                print('INF')
                exit()
print(cnt)
0