結果

問題 No.822 Bitwise AND
ユーザー NoneNone
提出日時 2021-03-06 17:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 75,752 KB
最終ジャッジ日時 2024-10-08 18:25:19
合計ジャッジ時間 10,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 987 ms
75,136 KB
testcase_01 AC 79 ms
74,880 KB
testcase_02 AC 48 ms
57,984 KB
testcase_03 AC 38 ms
51,200 KB
testcase_04 AC 988 ms
75,136 KB
testcase_05 AC 500 ms
75,136 KB
testcase_06 AC 861 ms
75,540 KB
testcase_07 AC 989 ms
75,648 KB
testcase_08 AC 986 ms
75,136 KB
testcase_09 AC 849 ms
75,752 KB
testcase_10 AC 41 ms
51,456 KB
testcase_11 AC 41 ms
51,936 KB
testcase_12 AC 958 ms
75,372 KB
testcase_13 AC 46 ms
59,008 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 574 ms
75,136 KB
testcase_16 AC 71 ms
75,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
if N<K:
    print("INF")
else:
    cnt=0
    for x in range(10**6):
        for k in range(K+1):
            y=x+k
            if x&y==N:
                cnt+=1
    print(cnt)
0