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
2015 - Suma Gauss 1
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 == Cei n copii din clasa a V-a şi-au ales câte un număr natural dintre numerele de la 1 la n, neavând doi copii acelaşi număr. Fiecare copil a calculat suma numerelor naturale mai mici sau egale cu numărul ales, apoi doamna de mate a calculat suma pătratelor rezultatelor obţinute de copii. Voi trebuie să aflaţi rezultatul obţinut de doamna de mate. == Date de intrare == Fișierul de intrare sumagauss1in.txt conține pe prima linie numărul n de copii din clasă. == Date de ieșire == Fișierul de ieșire sumagauss1out.txt va conține pe prima linie rezultatul obţinut de doamna de mate. == Restricții și precizări == * 1 ⩽ '''n''' ⩽ 500.000.000 == Exemplul 1 == ; Intrare ; sumagauss1in.txt : 3 ; Ieșire : Datele de intrare corespund restricțiilor impuse ; sumagauss1out.txt : 46 === Explicație === Numerele calculate de copii sunt 1, 3, 6. Numărul calculat de doamna de mate este 46. == Exemplul 2 == ; Intrare ; sumagauss1in.txt : 500000001 ; Ieșire : Datele de intrare NU corespund restricțiilor impuse == Rezolvare == <syntaxhighlight lang="python" line> #2015 - SumaGauss1 def validare_date(n): if not (1 <= n <= 500000000): return False return True def rezultat_doamna_de_mate(n): suma = 0 suma_patrate = 0 for i in range(1, n + 1): suma += i suma_patrate += suma ** 2 return suma_patrate with open("sumagauss1in.txt", "r") as file: n = int(file.readline().strip()) if validare_date(n): print("Datele de intrare corespund restricțiilor impuse") else: print("Datele de intrare NU corespund restricțiilor impuse") exit(0) with open("sumagauss1out.txt", "w") as file: rezultat = rezultat_doamna_de_mate(n) file.write(str(rezultat) + "\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