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
3502 - Hard Prime
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!
== Cerința == Se dau '''n''' numere naturale. Să se afișeze toate numerele prime distincte dintre acestea in ordine crescătoare. == Date de intrare == Fișierul de intrare '''hardprimein.txt''' conține pe prima linie numărul '''n''', iar pe a doua linie '''n''' numere naturale separate prin spații. == Date de ieșire == Fișierul de ieșire '''hardprimeout.txt''' va conține pe prima linie toate numerele prime distincte citite, în ordine crescătoare, separate prin câte un spațiu. == Restricții și precizări == *'''1 ⩽ n ⩽ 30.000''' *numerele de pe a doua linie a fișierului de intrare vor fi mai mici decât '''2.000.000.000''' == Exemplu 1 == ;'''hardprimein.txt''' :10 :3 2 32 47 3 0 2 40 7 1 ;'''hardprimeout.txt''' :2 3 7 47 == Explicație == '''2, 3, 7''' și '''47''' sunt singurele numere prime din fișierul de intrare. == Exemplu 2 == ;'''hardprimein.txt''' :0 ;'''hardprimeout.txt''' :Nu au fost respectate cerintele impuse <br> == Rezolvare == <syntaxhighlight lang="python" line> #3502 - HardPrime def check_restrictions(n, numbers): if not (1 <= n <= 30000): return False if not all(0 <= num < 2000000000 for num in numbers): return False return True def is_prime(num): if num < 2: return False for i in range(2, int(num**0.5) + 1): if num % i == 0: return False return True # Citire date de intrare try: with open("hardprimein.txt", "r") as file: n = int(file.readline().strip()) numbers = list(map(int, file.readline().split())) except FileNotFoundError: with open("hardprimeout.txt", "w") as file_out: file_out.write("Nu au fost respectate cerintele impuse!") exit() # Verificare daca sunt respectate cerintele if not check_restrictions(n, numbers): with open("hardprimeout.txt", "w") as file_out: file_out.write("Nu au fost respectate cerintele impuse!") exit() # Identificare și afișare numere prime distincte în ordine crescătoare prime_numbers = sorted(set(num for num in numbers if is_prime(num))) # Scriere rezultat în fișierul de ieșire with open("hardprimeout.txt", "w") as file: file.write(" ".join(map(str, prime_numbers)) + "\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