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
3676 - ABK1K2
(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> #3676 abk1k2 from math import gcd def verificare_date_intrare(a, b, k1, k2): # Verificăm dacă a și b sunt în intervalul specificat if not (1 <= a <= b <= 10**9): return False # Verificăm dacă k1 și k2 sunt în intervalul specificat if not (2 <= k1 <= 10**9 and 2 <= k2 <= 10**9): return False return True def numar_submultimi(a, b, k1, k2): if not verificare_date_intrare(a, b, k1, k2): return "Date invalide: Parametrii introdusi sunt incorecti." count = 0 for x in range(a, b + 1): for y in range(x + 1, b + 1): if gcd(x, y) % k1 == 0 or gcd(x, y) % k2 == 0: count += 1 return count def main(): # Citim datele de intrare with open("abk1k2.in", "r") as f: linii = f.readlines() # Eliminăm liniile goale și spațiile suplimentare linii = [linie.strip() for linie in linii if linie.strip()] # Verificăm dacă avem suficiente linii pentru a extrage datele if len(linii) != 4: # Scriem mesaj de date invalide în fișierul de ieșire with open("abk1k2.out", "w") as f: f.write("Date invalide: Nu sunt suficiente date in fisierul de intrare") return # Extragem datele de intrare a = int(linii[0]) b = int(linii[1]) k1 = int(linii[2]) k2 = int(linii[3]) # Calculăm numărul de submulțimi dorit rezultat = numar_submultimi(a, b, k1, k2) # Scriem rezultatul în fișierul de ieșire with open("abk1k2.out", "w") as f: f.write(str(rezultat)) 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