結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | kozy |
提出日時 | 2020-09-11 21:46:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 24,520 KB |
最終ジャッジ日時 | 2024-12-27 10:52:01 |
合計ジャッジ時間 | 30,985 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
15,872 KB |
testcase_01 | AC | 30 ms
20,992 KB |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 30 ms
15,872 KB |
testcase_14 | TLE | - |
ソースコード
def poa(n):arr = []temp = nfor i in range(2, int(-(-n**0.5//1))+1):if temp%i==0:cnt=0while temp%i==0:cnt+=1temp //= iarr.append([i, cnt])if temp!=1:arr.append([temp, 1])if arr==[]:arr.append([n, 1])return arra,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()