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
1063 - Arme
(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 == <syntaxhighlight lang="python" line> def main(): with open("arme.in", "r") as f: # Citim dimensiunile N și M N, M = map(int, f.readline().strip().split()) # Citim puterile armelor de la brâu puteri_brau = list(map(int, f.readline().strip().split())) # Citim puterile armelor din camera armelor puteri_camera = list(map(int, f.readline().strip().split())) # Restricții și precizări assert 1 <= N <= 1000, "N trebuie să fie între 1 și 1000" assert 1 <= M <= 1000, "M trebuie să fie între 1 și 1000" assert all(1 <= pb <= 10000 for pb in puteri_brau), "Puterea armelor de la brâu trebuie să fie între 1 și 10000" assert all(1 <= pc <= 10000 for pc in puteri_camera), "Puterea armelor din cameră trebuie să fie între 1 și 10000" # Sortăm puterile armelor de la brâu în ordine crescătoare puteri_brau.sort() # Sortăm puterile armelor din cameră în ordine descrescătoare puteri_camera.sort(reverse=True) # Înlocuim armele de la brâu cu cele din cameră for i in range(min(N, M)): if puteri_camera[i] > puteri_brau[i]: puteri_brau[i] = puteri_camera[i] else: break # Calculăm suma maximă a puterilor armelor de la brâu suma_maxima = sum(puteri_brau) with open("arme.out", "w") as f: f.write(f"{suma_maxima}\n") 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