#30471: python TLE怎麼處理?


CL108100114 (柏宇練習中)

學校 : 逢甲大學
編號 : 103830
來源 : [124.218.17.159]
最後登入時間 :
2022-06-13 12:49:21
d186. 11461 - Square Numbers -- UVa11461 | From: [124.218.17.159] | 發表日期 : 2022-05-23 18:42

try:
while True:
list1=[int(i)for i in input().split(" ")];num=0
if list1[0]==0 and list1[1]==0:
print()
else:
for i in range(list1[0],list1[1]+1):
if list1[0]<=i**2 and list1[1]>=i**2:
num+=1
print(num)
except:
EOFError
pass
 
#30473: Re: python TLE怎麼處理?


CL108100114 (柏宇練習中)

學校 : 逢甲大學
編號 : 103830
來源 : [124.218.17.159]
最後登入時間 :
2022-06-13 12:49:21
d186. 11461 - Square Numbers -- UVa11461 | From: [124.218.17.159] | 發表日期 : 2022-05-23 18:56

try:
while True:
list1=input().split(" ")
list1=[int(i)for i in list1]
num=0
if list1[0]==0 and list1[1]==0:
print()
else:
for i in range(list1[0],list1[1]+1):
if list1[0]<=i**2 and list1[1]>=i**2:
num+=1
print(num)
except EOFError:
pass



 
ZeroJudge Forum