300718: CF136B. Ternary Logic

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Ternary Logic

题意翻译

定义一个运算 $tor$,$a\ tor\ b$ 为 $a,b$ 在三进制下做不进位加法所得结果转成十进制的值。 现给出 $a,c(0\leq a,c\leq 10^9)$,请求出一个最小的 $b$,使得 $a\ tor\ b=c$。

题目描述

Little Petya very much likes computers. Recently he has received a new "Ternatron IV" as a gift from his mother. Unlike other modern computers, "Ternatron IV" operates with ternary and not binary logic. Petya immediately wondered how the $ xor $ operation is performed on this computer (and whether there is anything like it). It turned out that the operation does exist (however, it is called $ tor $ ) and it works like this. Suppose that we need to calculate the value of the expression $ a\ tor\ b $ . Both numbers $ a $ and $ b $ are written in the ternary notation one under the other one ( $ b $ under $ a $ ). If they have a different number of digits, then leading zeroes are added to the shorter number until the lengths are the same. Then the numbers are summed together digit by digit. The result of summing each two digits is calculated modulo 3. Note that there is no carry between digits (i. e. during this operation the digits aren't transferred). For example: $ 14_{10}\ tor\ 50_{10}=0112_{3}\ tor\ 1212_{3}=1021_{3}=34_{10} $ . Petya wrote numbers $ a $ and $ c $ on a piece of paper. Help him find such number $ b $ , that $ a\ tor\ b=c $ . If there are several such numbers, print the smallest one.

输入输出格式

输入格式


The first line contains two integers $ a $ and $ c $ ( $ 0<=a,c<=10^{9} $ ). Both numbers are written in decimal notation.

输出格式


Print the single integer $ b $ , such that $ a\ tor\ b=c $ . If there are several possible numbers $ b $ , print the smallest one. You should print the number in decimal notation.

输入输出样例

输入样例 #1

14 34

输出样例 #1

50

输入样例 #2

50 34

输出样例 #2

14

输入样例 #3

387420489 225159023

输出样例 #3

1000000001

输入样例 #4

5 5

输出样例 #4

0

Input

题意翻译

定义一个运算 $tor$,$a\ tor\ b$ 为 $a,b$ 在三进制下做不进位加法所得结果转成十进制的值。 现给出 $a,c(0\leq a,c\leq 10^9)$,请求出一个最小的 $b$,使得 $a\ tor\ b=c$。

加入题单

算法标签: