結果

問題 No.822 Bitwise AND
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-04 10:29:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-07-22 09:50:53
合計ジャッジ時間 2,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 128 ms
64,768 KB
testcase_05 AC 78 ms
63,004 KB
testcase_06 AC 101 ms
62,592 KB
testcase_07 AC 129 ms
64,512 KB
testcase_08 WA -
testcase_09 AC 45 ms
59,648 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 47 ms
59,136 KB
testcase_13 AC 45 ms
58,948 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 91 ms
63,488 KB
testcase_16 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
if n < k:
    print("INF")
else:
    ans = 0
    for i in range(n + 100):
        for j in range(k + 1):
            if i & (i + j) == n:
                ans += 1
    print(ans)
0