Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
4100 - Bipatrat
(section)
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Rezolvare == <syntaxhighlight lang="python" line> # 4100 import math def este_bipatrat(n): # Verificăm dacă n este pătrat perfect if int(math.sqrt(n))**2 != n: return False # Obținem lista de numere obținute prin inserarea unei cifre în n nums = [] str_n = str(n) for i in range(len(str_n)+1): for j in range(10): if i == 0 and j == 0: continue new_num = int(str_n[:i] + str(j) + str_n[i:]) if int(math.sqrt(new_num))**2 == new_num: nums.append(new_num) # Verificăm dacă numerele obținute sunt și ele pătrate perfecte for num in nums: if int(math.sqrt(num))**2 != num: return False return True def patrat_perfect(n): # Obținem lista de numere obținute prin inserarea unei cifre în n nums = [] str_n = str(n) for i in range(len(str_n)+1): for j in range(10): if i == 0 and j == 0: continue new_num = int(str_n[:i] + str(j) + str_n[i:]) if int(math.sqrt(new_num))**2 == new_num: nums.append(new_num) # Obținem lista de pătrate perfecte din nums perfect_squares = [] for num in nums: if int(math.sqrt(num))**2 == num: perfect_squares.append(num) # Returnăm lista sortată în ordine crescătoare return sorted(perfect_squares) if __name__ == "__main__": # Deschidem fișierele de intrare și de ieșire with open("bipatrat.in", "r") as fin, open("bipatrat.out", "w") as fout: # Citim numărul de linii din fișierul de intrare n = int(fin.readline()) # Parcurgem liniile din fișierul de intrare for i in range(n): # Citim numărul de pe linia curentă num = int(fin.readline()) # Verificăm dacă numărul este bipătrat if este_bipatrat(num): # Obținem lista de pătrate perfecte perfect_squares = patrat_perfect(num) # Scriem lista în fișierul de ieșire for square in perfect_squares: fout.write(str(square) + " ") fout.write("\n") else: fout.write("0\n") </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width