python3
1import math 2a,b,h,m=map(int,input().split()) 3l=30*h+(1/2)*m 4s=6*m 5c=int(abs(l-s)) 6if c>180: 7 c=360-c 8cos=math.cos(math.radians(c)) 9d=a**2+b**2-2*a*b*cos 10print(math.sqrt(d))
回答1件
あなたの回答
tips
プレビュー
投稿2021/03/29 02:58
python3
1import math 2a,b,h,m=map(int,input().split()) 3l=30*h+(1/2)*m 4s=6*m 5c=int(abs(l-s)) 6if c>180: 7 c=360-c 8cos=math.cos(math.radians(c)) 9d=a**2+b**2-2*a*b*cos 10print(math.sqrt(d))
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/29 23:07