結果

問題 No.939 and or
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-25 19:55:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-07-23 19:25:52
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,304 KB
testcase_01 AC 40 ms
52,204 KB
testcase_02 AC 39 ms
53,728 KB
testcase_03 AC 39 ms
52,356 KB
testcase_04 AC 39 ms
53,004 KB
testcase_05 WA -
testcase_06 AC 39 ms
52,272 KB
testcase_07 AC 39 ms
52,888 KB
testcase_08 AC 39 ms
52,000 KB
testcase_09 AC 39 ms
52,336 KB
testcase_10 AC 39 ms
52,404 KB
testcase_11 AC 39 ms
52,008 KB
testcase_12 AC 39 ms
51,624 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,760 KB
testcase_15 AC 39 ms
52,432 KB
testcase_16 AC 39 ms
52,336 KB
testcase_17 AC 39 ms
52,208 KB
testcase_18 AC 39 ms
52,056 KB
testcase_19 AC 38 ms
53,016 KB
testcase_20 WA -
testcase_21 AC 38 ms
52,724 KB
testcase_22 AC 39 ms
52,620 KB
testcase_23 AC 40 ms
52,280 KB
testcase_24 AC 39 ms
52,952 KB
testcase_25 AC 39 ms
52,004 KB
testcase_26 AC 39 ms
52,876 KB
testcase_27 AC 39 ms
52,868 KB
testcase_28 AC 39 ms
52,276 KB
testcase_29 WA -
testcase_30 AC 39 ms
53,012 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int, input().split())
ans = 1
a = list(format(a, 'b'))
b = list(format(b, 'b'))
a.reverse()
b.reverse()

if len(b) < len(a):
    b = b+['0']*(len(a)-len(b))
else:
    a = a+['0']*(len(b)-len(a))

for i, j in zip(a, b):
    if i == '0' and j == '1':
        ans *= 2
    elif i == '0' and j == '0':
        ans *= 1
    elif i == '1' and j == '1':
        ans *= 1
    else:
        ans = 0

print(ans//2)
0