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
1151 - Verif Egale Div Imp
(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!
= Exemplul 2 = Date de intrare 501 Date de ieșire Numărul de elemente trebuie să fie între 1 și 500. Programul se încheie. == Rezolvare == <syntaxhighlight lang="python3" line="1"> def verifica_restrictii_n(n): if not 1 <= n <= 500: print("Numărul de elemente trebuie să fie între 1 și 500. Programul se încheie.") return False return True def verifica_restrictii_element(element): if not 0 <= element < 10000: print("Elementele vectorului trebuie să aibă cel mult patru cifre. Programul se încheie.") return False return True def are_toate_elementele_egale(arr, left, right): if left == right: return True # Un singur element este întotdeauna "egal" cu el însuși mid = (left + right) // 2 are_toate_left = are_toate_elementele_egale(arr, left, mid) are_toate_right = are_toate_elementele_egale(arr, mid + 1, right) return are_toate_left and are_toate_right and (arr[left] == arr[right]) def main(): # Citim numărul de elemente n = int(input("Introduceți numărul de elemente (1 ≤ n ≤ 500): ")) # Verificăm restricția pentru n folosind funcția dedicată if not verifica_restrictii_n(n): return # Citim elementele vectorului arr = [] for i in range(n): element = int(input(f"Introduceți elementul {i + 1} (elemente cu cel mult 4 cifre): ")) # Verificăm restricția pentru elementele vectorului folosind funcția dedicată if not verifica_restrictii_element(element): return arr.append(element) # Verificăm și afișăm rezultatul rezultat = are_toate_elementele_egale(arr, 0, n - 1) if rezultat: print("DA") else: print("NU") if __name__ == "__main__": main() </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