CF602A.Two Bases

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers XX and YY realised that they have different bases, which complicated their relations.

You're given a number XX represented in base bxb_{x} and a number YY represented in base byb_{y} . Compare those two numbers.

输入格式

The first line of the input contains two space-separated integers nn and bxb_{x} ( 1<=n<=101<=n<=10 , 2<=bx<=402<=b_{x}<=40 ), where nn is the number of digits in the bxb_{x} -based representation of XX .

The second line contains nn space-separated integers x1,x2,...,xnx_{1},x_{2},...,x_{n} ( 0<=x_{i}<b_{x} ) — the digits of XX . They are given in the order from the most significant digit to the least significant one.

The following two lines describe YY in the same way: the third line contains two space-separated integers mm and byb_{y} ( 1<=m<=101<=m<=10 , 2<=by<=402<=b_{y}<=40 , bxbyb_{x}≠b_{y} ), where mm is the number of digits in the byb_{y} -based representation of YY , and the fourth line contains mm space-separated integers y1,y2,...,ymy_{1},y_{2},...,y_{m} ( 0<=y_{i}<b_{y} ) — the digits of YY .

There will be no leading zeroes. Both XX and YY will be positive. All digits of both numbers are given in the standard decimal numeral system.

输出格式

Output a single character (quotes for clarity):

  • '<' if X<Y
  • '>' if X>Y
  • '=' if X=YX=Y

输入输出样例

  • 输入#1

    6 2
    1 0 1 1 1 1
    2 10
    4 7
    

    输出#1

    =
    
  • 输入#2

    3 3
    1 0 2
    2 5
    2 4
    

    输出#2

    &lt;
    
  • 输入#3

    7 16
    15 15 4 0 0 7 10
    7 9
    4 8 0 3 1 5 0
    

    输出#3

    &gt;
    

说明/提示

In the first sample, X=1011112=4710=YX=101111_{2}=47_{10}=Y .

In the second sample, X=1023=215X=102_{3}=21_{5} and Y=245=1123Y=24_{5}=112_{3} , thus X<Y .

In the third sample, and Y=48031509Y=4803150_{9} . We may notice that XX starts with much larger digits and bxb_{x} is much larger than byb_{y} , so XX is clearly larger than YY .

首页