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
0279 - Distincte
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 dă un şir cu <code>n</code> elemente, numere naturale cu cel mult <code>8</code> cifre, ordonate crescător. Afişaţi în ordine crescătoare elementele distincte din şir. ==Date de intrare== Fişierul de intrare <code>distincte.in</code> conţine pe prima linie numărul <code>n</code>; urmează cele <code>n</code> elemente ale şirului, dispuse pe mai multe linii şi separate prin spaţii. ==Date de ieșire== Pe ecran se va afișa mesajul: "Datele de intrare corespund restricțiilor impuse." Pe următoarea linie se vor afișa elementele distincte din şir, în ordine crescătoare, fiecare pe o linie. În cazul în care datele introduse de la tastatură nu îndeplinesc cerințele enunțate, pe ecran se va afișa mesajul "Datele de intrare nu corespund restricțiilor impuse." ==Restricții și precizări== * <code>1 ≤ n ≤ 10.000</code> ==Exemplu 1== ;Intrare :7 :111 111 111 2111 4111 71111 71111 ;Ieșire :Datele de intrare corespund restricțiilor impuse. :111 2111 4111 71111 ==Exemplu 3== ;Intrare :-5 :111 111 111 2111 4111 71111 71111 ;Ieșire :Datele de intrare nu corespund restricțiilor impuse. ==Rezolvare== <syntaxhighlight lang="python" line="1"> #0279 - Distincte def conditii(n, numere): return len(numere) == n and \ 1 <= n <= 10_000 and \ numere == sorted(numere) and \ all(len(str(nr)) <= 8 for nr in numere) def distincte(numere): # set() este o funcție built-in care elimină duplicatele dintr-o listă # Folosim sorted() deoarece set() nu returnează un obiect sortat print(" ".join(str(x) for x in sorted(set(numere)))) if __name__ == "__main__": n = int(input()) numere = [int(x) for x in input().split()] while len(numere) < n: numere.extend([int(x) for x in input().split()]) if not conditii(n, numere): print("Datele de intrare nu corespund restricțiilor impuse.") else: print("Datele de intrare corespund restricțiilor impuse.") distincte(numere) </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