栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

【PAT (Advanced Level) Practice】1015 Reversible Primes (20 分)python题解

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

【PAT (Advanced Level) Practice】1015 Reversible Primes (20 分)python题解

A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a prime.

Now given any two positive integers N (<105) and D (1<D≤10), you are supposed to tell if N is a reversible prime with radix D.

Input Specification:

The input file consists of several test cases. Each case occupies a line which contains two integers N and D. The input is finished by a negative N.

Output Specification:

For each test case, print in one line if YesN is a reversible prime with radix D, or if not.No

Sample Input:
73 10
23 2
23 10
结尾无空行

Sample Output:
Yes
Yes
No
结尾无空行
def change(x,d):#把十进制的x转换成d进制,并输出反转的d进制数的字符串
    num = ''
    while x:
        num += str(x % d)
        x //= d
    return num

def decideprime(x):#判断是否为素数
    if x == 0 or x == 1:
        return False
    for i in range(2,int(x**0.5)+1):
        if x % i == 0:
            return False
    return True

while 1:
    data = list(input().split())
    if int(data[0]) < 0:
        break
    else:
        a = int(data[0])
        b = int(data[1])
        k = change(a,b)
        length1 = len(k)-1
        S = 0
        for i in k:#把反转后的d进制数转换成十进制数
            S += int(i)*(b**length1)
            length1 -= 1
        if decideprime(a) and decideprime(S):
            print('Yes')
        else:
            print('No')
        

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/460929.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号