結果

問題 No.822 Bitwise AND
ユーザー titiatitia
提出日時 2019-04-26 22:39:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 69,940 KB
最終ジャッジ日時 2024-11-25 05:15:46
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
67,212 KB
testcase_01 AC 44 ms
69,540 KB
testcase_02 AC 39 ms
59,676 KB
testcase_03 AC 34 ms
53,008 KB
testcase_04 AC 114 ms
63,724 KB
testcase_05 AC 83 ms
63,976 KB
testcase_06 AC 116 ms
64,900 KB
testcase_07 AC 115 ms
64,548 KB
testcase_08 AC 188 ms
68,360 KB
testcase_09 AC 165 ms
68,500 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 184 ms
68,972 KB
testcase_13 AC 40 ms
59,268 KB
testcase_14 AC 35 ms
53,284 KB
testcase_15 AC 82 ms
65,224 KB
testcase_16 AC 44 ms
68,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,K=map(int,input().split())

if N==0 and K!=0:
    print("INF")
    sys.exit()
    
ANS=0
for x in range(N,2*10**5+1):
    for i in range(K+1):
        if x & (x+i)==N:
            ANS+=1

print(ANS)

        
0