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
3459 - Count Prime
(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> def validare_date(stanga, dreapta): flag = False if stanga.isdigit() and dreapta.isdigit(): #verificam daca ambele string-uri pot fi convertite in numere intregi if 0 < int(stanga) < int(dreapta) <= 2 ** 32 and int(dreapta) - int(stanga) <= 1_000_000: #verificam daca cele doua numere se afla in intervalul si au o diferenta mai mica sau egala cu 1.000.000 flag = True return flag def prim(n): #Funcția verifică dacă un număr este prim if n < 2: return False for i in range(2, int(n ** 0.5) + 1): if n % i == 0: return False return True def câte_prime(stanga, dreapta): #Funcția calculează numărul de numere prime din intervalul [stanga, dreapta] nr = 0 for n in range(stanga, dreapta + 1): if prim(n): nr += 1 return nr if __name__ == '__main__': with open('countprime.in', 'r') as fin, open('countprime.out', 'w') as fout: stanga, dreapta = fin.readline().split() #citim cele doua numere din fișierul de intrare if validare_date(stanga, dreapta): #verificăm dacă cele două numere respectă condițiile impuse cnt = câte_prime(int(stanga), int(dreapta)) #calculăm numărul de numere prime din intervalul [stanga, dreapta] fout.write("Datele sunt introduse corect.\n") #scriem mesajul in fișierul de ieșire fout.write(str(cnt)) #scriem in fisierul de ieșire numărul de numere prime else: fout.write("Datele introduse nu corespund restrictiilor impuse.")#în cazul în care nu sunt respectate condițiile impuse afișăm mesajul corespunzător </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