結果

問題 No.822 Bitwise AND
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-04-27 09:28:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 204 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,264 KB
最終ジャッジ日時 2024-11-27 09:21:01
合計ジャッジ時間 34,989 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,744 ms
17,312 KB
testcase_02 AC 525 ms
20,992 KB
testcase_03 AC 32 ms
17,064 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 29 ms
17,184 KB
testcase_11 AC 30 ms
20,608 KB
testcase_12 TLE -
testcase_13 AC 522 ms
10,240 KB
testcase_14 AC 30 ms
10,368 KB
testcase_15 TLE -
testcase_16 AC 781 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if N < K :
    print("INF")
    exit()

ans = 0
for x in range(10**6):
    for k in range(K+1):
        y = x + k
        if (x & y) == N:
            ans += 1
print(ans)
0