2729 - SAO: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

22 April 2023

29 March 2023

  • curprev 18:2418:24, 29 March 2023Andor Giulia talk contribs 797 bytes +797 Pagină nouă: == Rezolvare == <syntaxhighlight lang="python" line="1"> n = int(input("Introduceti numarul de monstri: ")) monsters = [] for i in range(n): res, pow = map(int, input(f"Introduceti rezistenta si puterea monstrului {i+1}: ").split()) monsters.append((res, pow)) m = int(input("Introduceti numarul de oferte: ")) offers = [] for i in range(m): res, pow, price = map(int, input(f"Introduceti rezistenta, puterea si pretul ofertei {i+1}: ").split()) offers.append((re...