結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 600 ms
75,392 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 WA -
testcase_03 AC 39 ms
51,756 KB
testcase_04 AC 867 ms
75,392 KB
testcase_05 AC 376 ms
75,648 KB
testcase_06 AC 622 ms
75,564 KB
testcase_07 AC 872 ms
75,520 KB
testcase_08 AC 50 ms
59,776 KB
testcase_09 AC 47 ms
59,264 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 54 ms
59,648 KB
testcase_13 AC 45 ms
59,136 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 496 ms
75,392 KB
testcase_16 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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