結果

問題 No.822 Bitwise AND
ユーザー ttrttr
提出日時 2020-02-27 21:24:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 64,992 KB
最終ジャッジ日時 2024-10-13 16:01:21
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 108 ms
64,640 KB
testcase_05 AC 67 ms
63,360 KB
testcase_06 AC 88 ms
63,104 KB
testcase_07 AC 109 ms
64,512 KB
testcase_08 AC 41 ms
59,520 KB
testcase_09 AC 41 ms
59,392 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 41 ms
59,648 KB
testcase_13 AC 41 ms
58,880 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 78 ms
64,256 KB
testcase_16 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())

if N == 0 and K > 0:
    print("INF")
else:
    ans = 0
    for x in range(N+2*K+1):
        for y in range(x, x+K+1):
            if x&y == N:
                ans += 1

    print(ans)
0