結果

問題 No.822 Bitwise AND
ユーザー titiatitia
提出日時 2019-04-26 23:19:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 75,984 KB
最終ジャッジ日時 2024-11-25 07:06:19
合計ジャッジ時間 8,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,008 ms
75,384 KB
testcase_01 AC 69 ms
75,536 KB
testcase_02 AC 40 ms
58,496 KB
testcase_03 AC 35 ms
53,064 KB
testcase_04 AC 707 ms
75,404 KB
testcase_05 AC 362 ms
75,488 KB
testcase_06 AC 619 ms
75,348 KB
testcase_07 AC 694 ms
75,416 KB
testcase_08 AC 769 ms
75,372 KB
testcase_09 AC 663 ms
75,432 KB
testcase_10 WA -
testcase_11 AC 35 ms
52,252 KB
testcase_12 AC 743 ms
75,416 KB
testcase_13 AC 40 ms
58,608 KB
testcase_14 AC 34 ms
51,944 KB
testcase_15 AC 404 ms
75,236 KB
testcase_16 AC 61 ms
75,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

MAX=0
for i in range(30):
    if (1<<i) &N!=0:
        MAX=i


if K>=(1<<(MAX+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