結果

問題 No.822 Bitwise AND
ユーザー ttrttr
提出日時 2020-02-27 21:31:50
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 206 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 65,712 KB
最終ジャッジ日時 2024-06-25 18:18:44
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 37 ms
51,884 KB
testcase_04 AC 117 ms
65,712 KB
testcase_05 AC 77 ms
65,112 KB
testcase_06 AC 96 ms
63,956 KB
testcase_07 AC 119 ms
65,512 KB
testcase_08 AC 46 ms
60,888 KB
testcase_09 AC 46 ms
59,484 KB
testcase_10 AC 38 ms
52,588 KB
testcase_11 AC 38 ms
51,944 KB
testcase_12 AC 46 ms
59,768 KB
testcase_13 AC 42 ms
59,460 KB
testcase_14 AC 37 ms
52,956 KB
testcase_15 AC 85 ms
65,248 KB
testcase_16 AC 38 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N < K:
    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