iT邦幫忙

2023 iThome 鐵人賽

DAY 21
0
自我挑戰組

CPE 49題訓練系列 第 21

YKL22.UVA10221 Satellites YKL30.UVA10193 All You Need Is Love

  • 分享至 

  • xImage
  •  

Satellites

import math
while 1:
	try:
		r,d,n=input().split()
		r,d=int(r)+6440,int(d)
		if n=='min':
			d=d/60
		ans1=2*r*math.pi*(d/360)
		ans2=2*r*math.sin(math.pi*(d/360))
		print('{:.6f} {:.6f}'.format(ans1,ans2))
	except:
		break

All You Need Is Love

T=input()
for t in range(int(T)):
	a=int(input(),2)
	b=int(input(),2)
	while b>0:
		z=a%b
		a=b
		b=z
	if a>1:
		print('Pair #'+str(t+1)+': All you need is love!')
	else:
		print('Pair #'+str(t+1)+': Love is not all you need!')

上一篇
YKL40.UVA10908 Largest Square
下一篇
YKL38.UVA10242 Fourth Point!!
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言