結果

問題 No.822 Bitwise AND
ユーザー ああいいああいい
提出日時 2022-01-27 15:00:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-06-07 10:53:35
合計ジャッジ時間 2,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
65,920 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 137 ms
66,176 KB
testcase_05 AC 91 ms
65,792 KB
testcase_06 AC 126 ms
65,792 KB
testcase_07 AC 139 ms
66,304 KB
testcase_08 AC 45 ms
60,032 KB
testcase_09 AC 41 ms
58,240 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 AC 43 ms
58,880 KB
testcase_13 AC 43 ms
59,520 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 97 ms
65,408 KB
testcase_16 AC 37 ms
52,096 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):
    for y in range(x,x+K+1):
        if x & y == N:ans += 1
print(ans)
0