結果

問題 No.822 Bitwise AND
ユーザー vwxyzvwxyz
提出日時 2024-04-07 17:34:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 75,956 KB
最終ジャッジ日時 2024-10-01 04:35:46
合計ジャッジ時間 6,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
75,932 KB
testcase_01 AC 37 ms
52,792 KB
testcase_02 AC 38 ms
52,204 KB
testcase_03 AC 35 ms
53,168 KB
testcase_04 AC 864 ms
75,528 KB
testcase_05 AC 370 ms
75,572 KB
testcase_06 AC 618 ms
75,524 KB
testcase_07 AC 854 ms
75,472 KB
testcase_08 AC 47 ms
61,048 KB
testcase_09 AC 44 ms
60,496 KB
testcase_10 AC 36 ms
52,624 KB
testcase_11 AC 36 ms
53,104 KB
testcase_12 AC 52 ms
61,696 KB
testcase_13 AC 42 ms
60,360 KB
testcase_14 AC 36 ms
51,956 KB
testcase_15 AC 494 ms
75,956 KB
testcase_16 AC 38 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
if N<K:
    ans="INF"
else:
    ans=0
    for x in range(10*N+1):
        for y in range(x,x+K+1):
            if y-x<=K and x&y==N:
                ans+=1
print(ans)
0