結果

問題 No.822 Bitwise AND
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-04 10:30:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,692 KB
最終ジャッジ日時 2024-06-25 18:22:35
合計ジャッジ時間 6,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
75,624 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 885 ms
75,692 KB
testcase_05 AC 347 ms
75,680 KB
testcase_06 AC 581 ms
75,484 KB
testcase_07 AC 784 ms
75,476 KB
testcase_08 AC 52 ms
59,904 KB
testcase_09 AC 48 ms
59,520 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 53 ms
60,416 KB
testcase_13 AC 46 ms
59,008 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 461 ms
75,520 KB
testcase_16 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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