結果
問題 | No.2954 Calculation of Exponentiation |
ユーザー | ねしん |
提出日時 | 2024-11-08 21:59:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 914 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 88,832 KB |
最終ジャッジ日時 | 2024-11-08 21:59:46 |
合計ジャッジ時間 | 5,742 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
88,704 KB |
testcase_01 | AC | 136 ms
88,448 KB |
testcase_02 | AC | 142 ms
88,832 KB |
testcase_03 | AC | 144 ms
88,704 KB |
testcase_04 | AC | 142 ms
88,832 KB |
testcase_05 | AC | 143 ms
88,832 KB |
testcase_06 | AC | 143 ms
88,704 KB |
testcase_07 | AC | 138 ms
88,704 KB |
testcase_08 | AC | 141 ms
88,704 KB |
testcase_09 | AC | 136 ms
88,704 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 140 ms
88,448 KB |
testcase_14 | AC | 142 ms
88,064 KB |
testcase_15 | AC | 139 ms
88,704 KB |
testcase_16 | AC | 136 ms
88,576 KB |
testcase_17 | AC | 134 ms
88,576 KB |
testcase_18 | AC | 136 ms
88,576 KB |
testcase_19 | AC | 140 ms
88,576 KB |
testcase_20 | AC | 143 ms
88,448 KB |
testcase_21 | WA | - |
testcase_22 | AC | 151 ms
88,320 KB |
testcase_23 | AC | 135 ms
88,576 KB |
testcase_24 | AC | 136 ms
88,192 KB |
testcase_25 | AC | 139 ms
88,704 KB |
testcase_26 | AC | 135 ms
88,704 KB |
testcase_27 | AC | 139 ms
88,320 KB |
testcase_28 | AC | 139 ms
88,320 KB |
testcase_29 | AC | 144 ms
88,320 KB |
testcase_30 | AC | 141 ms
88,192 KB |
ソースコード
from fractions import Fraction def gcd(a,b): if b==0: return a else: return gcd(b,a%b) A,B=list(map(str,input().split())) if B=="0.0000": print("Yes") exit() if B[0]=="-": print("No") exit() if A[0]=="1" and A[1]==".": print("Yes") exit() a="" for i in range(len(A)): if A[i]!=".": a=a+A[i] a=int(a) b="" for i in range(len(B)): if B[i]!=".": b=b+B[i] b=int(b) aa=Fraction(a,10000) bb=Fraction(b,10000) if aa.denominator!=1: print("No") exit() c=aa.numerator d=c cnt=[] for i in range(2,int(d**0.5)+5): if c%i==0: z=0 while c%i==0: c=c//i z+=1 cnt.append(z) if len(cnt)==1: if cnt[0]%bb.denominator==0: print("Yes") exit() else: print("No") exit() else: m=cnt[0] for i in range(1,len(cnt)): m=gcd(max(m,cnt[i]),min(m,cnt[i])) if m%bb.denominator==0: print("Yes") exit() else: print("No") exit()