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
3910 - Aranjamente1
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 citesc trei numere naturale <code>a b n</code>. Să se afișeze, în ordine lexicografică, șirurile cu <code>n</code> elemente distincte din mulțimea <code>{a, a + 1, ..., b}</code>. = Date de intrare = Programul citește de la tastatură numerele <code>a b n</code>. = Date de ieșire = Programul va afișa pe ecran șirurile cerute, fiecare pe câte o linie. Elementele fiecărui șir vor fi separate prin câte un spațiu. În cazul în care restricțiile nu sunt îndeplinite, se va afișa mesajul "Nu corespunde restricțiilor". = Restricții și precizări = * <code>1 ≤ a < b ≤ 1.000.000.000</code> * <code>1≤ n ≤ b - a < 8</code> = Exemplul 1 = Intrare 4 6 2 Ieșire 4 5 4 6 5 4 5 6 6 4 6 5 = Exemplul 2 = Intrare 6 8 3 consola Nu corespunde restricțiilor == Rezolvare == <syntaxhighlight lang="python3" line="1"> from itertools import permutations def verificare_restrictii(a, b, n): if not(1 <= a < b <= 1000000000) or not(1 <= n <= b - a < 8): print("Nu corespunde restricțiilor") return False return True def afisare_permutari(a, b, n): if not verificare_restrictii(a, b, n): return # Generarea tuturor permutărilor distincte de lungime n permutari = list(permutations(range(a, b + 1), n)) # Afișarea permutărilor for permutare in permutari: print(*permutare) # Citirea datelor de intrare a, b, n = map(int, input("Introduceți trei numere naturale separate prin spațiu (a b n): ").split()) # Apelarea funcției pentru afișarea permutărilor sau mesaj de eroare afisare_permutari(a, b, 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