結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
58,496 KB
testcase_02 AC 38 ms
58,368 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 106 ms
65,152 KB
testcase_05 AC 66 ms
63,616 KB
testcase_06 AC 86 ms
63,208 KB
testcase_07 AC 110 ms
65,152 KB
testcase_08 AC 43 ms
59,648 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 38 ms
59,392 KB
testcase_14 AC 34 ms
51,756 KB
testcase_15 AC 76 ms
63,984 KB
testcase_16 AC 39 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    print(ans)
0