結果

問題 No.939 and or
ユーザー convexineqconvexineq
提出日時 2020-12-19 20:49:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-09-21 10:35:16
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,728 KB
testcase_01 AC 41 ms
54,104 KB
testcase_02 AC 44 ms
52,032 KB
testcase_03 AC 37 ms
52,832 KB
testcase_04 AC 37 ms
52,412 KB
testcase_05 AC 38 ms
51,892 KB
testcase_06 AC 37 ms
52,964 KB
testcase_07 AC 38 ms
52,400 KB
testcase_08 AC 38 ms
52,180 KB
testcase_09 AC 39 ms
53,284 KB
testcase_10 AC 39 ms
53,200 KB
testcase_11 AC 38 ms
52,952 KB
testcase_12 AC 38 ms
52,552 KB
testcase_13 AC 39 ms
52,376 KB
testcase_14 AC 39 ms
51,700 KB
testcase_15 AC 39 ms
52,756 KB
testcase_16 AC 39 ms
52,952 KB
testcase_17 AC 40 ms
53,244 KB
testcase_18 AC 39 ms
53,872 KB
testcase_19 AC 39 ms
52,448 KB
testcase_20 AC 39 ms
52,224 KB
testcase_21 AC 38 ms
52,128 KB
testcase_22 AC 38 ms
52,264 KB
testcase_23 AC 37 ms
53,224 KB
testcase_24 AC 37 ms
53,076 KB
testcase_25 AC 38 ms
53,012 KB
testcase_26 AC 38 ms
52,956 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 38 ms
53,416 KB
testcase_29 AC 38 ms
53,116 KB
testcase_30 AC 44 ms
53,160 KB
testcase_31 AC 38 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
d = dict(zip([(0,0),(1,0),(0,1),(1,1)],[1,0,2,1]))
ans = 1
for i in range(32):
    x,y = a>>i&1, b>>i&1
    ans *= d[x,y]
print((ans+1)//2)
0