結果

問題 No.1224 I hate Sqrt Inequality
ユーザー kozy
提出日時 2020-09-11 21:46:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,520 KB
最終ジャッジ日時 2024-12-27 10:52:01
合計ジャッジ時間 30,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 1 WA * 2 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

def poa(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr
a,b=map(int,input().split())
L=poa(b)
if len(L)>2:
    print("Yes")
    exit()
if len(L)==1:
    if L[0][0]==2 or L[0][0]==5:
        print("No")
        exit()
    else:
        print("Yes")
        exit()
if len(L)==2:
    if L[1][0]==2 and L[0][0]==5 or L[0][0]==2 and L[1][0]==5:
        print("No")
        exit()
    else:
        print("Yes")
        exit()
0