結果

問題 No.822 Bitwise AND
ユーザー pluto77pluto77
提出日時 2019-05-23 12:37:44
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 76,584 KB
実行使用メモリ 78,088 KB
最終ジャッジ日時 2024-06-25 18:17:58
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
77,576 KB
testcase_01 AC 75 ms
75,796 KB
testcase_02 AC 76 ms
75,792 KB
testcase_03 AC 76 ms
75,684 KB
testcase_04 AC 163 ms
77,580 KB
testcase_05 AC 111 ms
77,836 KB
testcase_06 AC 135 ms
77,568 KB
testcase_07 AC 161 ms
77,612 KB
testcase_08 AC 75 ms
76,940 KB
testcase_09 AC 76 ms
77,176 KB
testcase_10 AC 75 ms
75,560 KB
testcase_11 AC 72 ms
75,788 KB
testcase_12 AC 77 ms
77,220 KB
testcase_13 AC 75 ms
76,688 KB
testcase_14 AC 76 ms
75,680 KB
testcase_15 AC 123 ms
78,088 KB
testcase_16 AC 75 ms
75,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki822
import sys

n,k=map(int,raw_input().split())
if n<k:
 print 'INF'
 sys.exit()
res=0
for i in xrange(n,n*2+1):
 for j in xrange(k+1):
  if i&(i+j)==n:
   res+=1
print res
0