結果

問題 No.822 Bitwise AND
ユーザー titiatitia
提出日時 2019-04-26 23:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-06-25 18:16:46
合計ジャッジ時間 9,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,135 ms
75,264 KB
testcase_01 AC 80 ms
75,392 KB
testcase_02 AC 45 ms
58,624 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 785 ms
75,264 KB
testcase_05 AC 413 ms
75,136 KB
testcase_06 AC 701 ms
75,392 KB
testcase_07 AC 783 ms
76,032 KB
testcase_08 AC 867 ms
75,520 KB
testcase_09 AC 747 ms
75,564 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 843 ms
75,364 KB
testcase_13 AC 45 ms
58,240 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 461 ms
75,264 KB
testcase_16 AC 70 ms
75,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N==0 and K!=0:
    print("INF")
    sys.exit()

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

print(ANS)
0