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
4250 - Inlocuire 10
(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!
= Restricții și precizări = * <code>1 ≤ n ≤ 1000</code> * elementele tabloului vor fi mai mici decât <code>10.000</code> == Exemplul 1 == Input: 7 7 18 18 5 14 20 4 Output: [21, 252, 96, 12, 234, 234, 16] Explicație: Modificările efectuate sunt: 7 se înlocuiește cu 16 deoarece are suma divizorilor egala cu 8 și are 2 divizori (8*2=16). 18 se înlocuiește cu 234 deoarece are suma divizorilor egala cu 39 și are 6 divizori (39*6=234). … 4 se înlocuiește 21 deoarece are suma divizorilor egala cu 7 și are 3 divizori (7*3=21). La final, elementele sunt afișate de la dreapta la stânga. == Exemplul 2 == Input: 0 7 18 18 5 14 20 4 Output: Restricții neîndeplinite pentru n. Introduceți un număr între 1 și 1000. == Rezolvare == <syntaxhighlight lang="python3" line="1"> def validate_input_restrictions(n, tablou): if not 1 <= n <= 1000: print("Restricții neîndeplinite pentru n. Introduceți un număr între 1 și 1000.") return False if any(x <= 1 or x >= 10000 for x in tablou): print("Elementele tabloului trebuie să fie mai mari decât 1 și mai mici decât 1.000.000.000.") return False return True def citire(): n = int(input("Introduceți numărul n=")) print("Introduceți elemente vector") vector = list(map(int, input().split())) return n,vector def afisare(vector): print(vector[::-1]) def suma_div(x): suma=x+1 div = 2 while div <= x/2: if x%div == 0: suma+=div div+=1 return suma def nr_div(x): nr=2 div = 2 while div <= x/2: if x%div == 0: nr+=1 div+=1 return nr def inloc(vector): for i in range(len(vector)): aux=suma_div(vector[i])*nr_div(vector[i]) vector[i]=aux return vector def main(): n, tablou = citire() if not validate_input_restrictions(n, tablou): return tablou=inloc(tablou) afisare(tablou) 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