iT邦幫忙

2023 iThome 鐵人賽

DAY 13
0
自我挑戰組

CPE 49題訓練系列 第 13

YKL03.UVA10812 Beat the Spread! YKL07.UVA11461 Square Numbers

  • 分享至 

  • xImage
  •  

Beat the Spread!

T=input()
for t in range(int(T)):
	a,b=map(int,input().split())
	c=0
	ans=''
	for i in range(a+1):
		for j in range(a+1):
			if i+j==a and abs(i-j)==b:
				ans=str(i)+' '+str(j)
	if ans=='' or a<b:
		print('impossible')
	else:
		print(ans)

Square Numbers

while 1:
	try:
		a,b=map(int,input().split())
		c=0
		if a==b==0:
			break
		for i in range(a,b+1):
			if i**(1/2)%1==0:
				c+=1
		print(c)
	except:
		break

上一篇
YKL35.UVA11349 Symmetric Matrix
下一篇
YKL19.UVA11063 B2-Sequence*CPE48-23
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言