結果

問題 No.822 Bitwise AND
ユーザー ああいいああいい
提出日時 2022-01-27 15:00:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 66,688 KB
最終ジャッジ日時 2024-06-07 10:52:38
合計ジャッジ時間 1,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 139 ms
66,176 KB
testcase_05 AC 91 ms
65,536 KB
testcase_06 AC 127 ms
65,664 KB
testcase_07 AC 136 ms
66,688 KB
testcase_08 AC 46 ms
59,604 KB
testcase_09 AC 42 ms
58,752 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 43 ms
58,752 KB
testcase_13 AC 44 ms
59,264 KB
testcase_14 AC 36 ms
52,060 KB
testcase_15 AC 100 ms
65,664 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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