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
2311 - Rapunzel
(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="1" start="1"> # Definim o funcție pentru validarea datelor de intrare def validare(n, m1, m2): if not (1 <= n <= 5000000000 and 1 <= m1 <= 2500 and 1 <= m2 <= 2500): return False else: return True # Definim o funcție pentru calcularea numărului de zile necesare lui Flynn def calculare_zile(n, m1, m2): z = m1 + m2 d = n // z if d * z == n: return d else: return d + 1 # Verificăm dacă acesta este fișierul principal și apelăm cele două funcții definite mai sus if __name__ == "__main__": # Deschidem fișierul de intrare pentru citire și fișierul de ieșire pentru scriere with open("rapunzel.in", "r") as fin, open("rapunzel.out", "w") as fout: # Citim n, m1 și m2 de la intrare și calculăm numărul de zile necesare n, m1, m2 = map(int, fin.readline().split()) days = calculare_zile(n, m1, m2) # Verificăm dacă datele de intrare sunt valide și scriem numărul de zile necesare în fișierul de ieșire if validare(n, m1, m2): print("Datele de intrare corespund restricțiilor impuse.") fout.write(str(days)) else: print("Datele de intrare nu corespund restricțiilor impuse.") </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