結果

問題 No.1224 I hate Sqrt Inequality
ユーザー kozykozy
提出日時 2020-09-11 21:46:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 10,796 KB
実行使用メモリ 12,804 KB
最終ジャッジ日時 2023-08-27 13:45:38
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,548 KB
testcase_01 AC 16 ms
8,536 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

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