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
1636 - Cifre 15
(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!
== Rezolvare == === Rezolvare ver. 1 === <syntaxhighlight lang="python" line> def validare(nr_de_numere, numere): if nr_de_numere < 1 or nr_de_numere > 100: return False for numar in numere: if numar < 1 or numar > 10**9: return False return True def inmultire_numere(numere): numar_zero = 0 ultima_cifra_nenula = None produs = 1 for numar in numere: produs *= numar while produs != 0 and produs % 10 == 0: numar_zero += 1 produs //= 10 if produs != 0: ultima_cifra_nenula = produs % 10 return numar_zero, ultima_cifra_nenula def afisare(numar_zero, ultima_cifra_nenula): with open("cifre15.out", "w") as f: f.write(str(numar_zero) + " " + str(ultima_cifra_nenula) + "\n") if __name__ == "__main__": with open("cifre15.in") as f: nr_de_numere = int(f.readline().strip()) numere = list(map(int, f.readline().split())) if not validare(nr_de_numere, numere): print("Eroare: Datele introduse nu sunt valide!") exit() rezultat = inmultire_numere(numere) afisare(*rezultat) print("Datele au fost introduse corect.") </syntaxhighlight> === Rezolvare ver. 2 === <syntaxhighlight lang="python" line> # citirea datelor de intrare with open("cifre15.in") as f: # se citește nr_de_numere, numărul de numere ce trebuie înmulțite nr_de_numere = int(f.readline().strip()) # se citește lista de n numere numere = list(map(int, f.readline().split())) # validarea datelor de intrare if nr_de_numere < 1 or nr_de_numere > 100: print("Eroare: Numarul introdus nu respectă restricțiile problemei!") exit() for numar in numere: if numar < 1 or numar > 10**9: print("Eroare: Unul dintre numere nu respectă restricțiile problemei!") exit() # inițializarea variabilelor numar_zero = 0 # numărul de cifre 0 de la sfârșitul produsului numerelor ultima_cifra_nenula = None # ultima cifră nenulă a produsului numerelor # înmulțirea numerelor și determinarea ultimei cifre nenule produs = 1 for numar in numere: produs *= numar # se elimină cifrele 0 de la sfârșitul produsului while produs != 0 and produs % 10 == 0: numar_zero += 1 produs //= 10 # se determină ultima cifră nenulă a produsului if produs != 0: ultima_cifra_nenula = produs % 10 # scrierea datelor de ieșire with open("cifre15.out", "w") as f: f.write(str(numar_zero) + " " + str(ultima_cifra_nenula) + "\n") print("Datele introduse sunt valide.") </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