結果

問題 No.822 Bitwise AND
ユーザー ああいいああいい
提出日時 2022-01-27 14:59:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-06-07 10:51:14
合計ジャッジ時間 2,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 142 ms
66,560 KB
testcase_05 AC 90 ms
65,792 KB
testcase_06 AC 125 ms
65,792 KB
testcase_07 AC 138 ms
65,792 KB
testcase_08 AC 45 ms
59,904 KB
testcase_09 AC 40 ms
58,880 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 41 ms
59,372 KB
testcase_13 AC 42 ms
59,264 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 97 ms
66,048 KB
testcase_16 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
import sys
if N < K:
    print('INF')
    exit()
n = 1
while n < N:
    n <<= 1
ans = 0
for x in range(n+1):
    for y in range(x,x+K+1):
        if x & y == N:ans += 1
print(ans)
0