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
2229 - numere20
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!
== Enunt == Ionel are de rezolvat mai multe probleme de divizibilitate. Unele dintre ele îi cer să afle câte numere au anumite proprietăţi. Vă rugăm să-l ajutaţi să termine tema mai repede. = Cerința = Scrieţi un program care citeşte un număr natural <code>n</code> şi două numere prime <code>u</code> şi <code>v</code> mai mici decât <code>10</code> şi determină câte numere naturale mai mici sau egale cu <code>n</code> au proprietatea că nu sunt divizibile nici cu <code>u</code>, nici cu <code>v</code>. = Date de intrare = Fișierul de intrare <code>numere20.in</code> conţine pe prima linie numărul natural <code>n</code> şi cifrele <code>u</code> şi <code>v</code>, separate prin câte un spaţiu. = Date de ieșire = Fișierul de ieșire <code>numere20.out</code> va conţine o singură linie pe care va fi scris numărul de numere naturale mai mici sau egale cu <code>n</code> care nu sunt divizibile nici cu <code>u</code>, nici cu <code>v</code>. În cazul în care restricțiile nu sunt îndeplinite, se va afișa mesajul "Datele nu corespund restrictiilor impuse". = Restricții și precizări = * Numărul natural <code>n</code> are cel mult <code>100</code> de cifre = Exemplul 1: = <code>numere20.in</code> 30 3 7 <code>numere20.out</code> 17 === Explicație === Numerele care au proprietatea din enunţ sunt: <code>1</code>, <code>2</code>, <code>4</code>, <code>5</code>, <code>8</code>, <code>10</code>, <code>11</code>, <code>13</code>, <code>16</code>, <code>17</code>, <code>19</code>, <code>20</code>, <code>22</code>, <code>23</code>, <code>25</code>, <code>26</code>, <code>29</code>. == Exemplul 2: == <code>numere20.in</code> 30 3 7 <code>numere20.out</code> Datele nu corespund restrictiilor impuse == Rezolvare == <syntaxhighlight lang="python3"> LG = 1001 def Set(a, x): n = len(x) a[0] = n for i in range(1, n + 1): a[i] = int(x[n - i]) def copie(A, B): A[:LG] = B[:LG] def scrie(a): with open("numere20OUT.txt", "w") as g: for i in range(a[0], 0, -1): g.write(str(a[i])) g.write('\n') def verifica_restrictii(n, u, v): if n[0] > 100 or u > 100 or v > 100: with open("numere20OUT.txt", "w") as g: g.write("Datele nu corespund restrictiilor impuse\n") return False return True def suma(A, B, C): r, s = 0, 0 C[:LG] = A[:LG] if A[0] > B[0]: C[0] = A[0] else: C[0] = B[0] i = 1 while i <= B[0]: s = C[i] + B[i] + r r = s // 10 C[i] = s % 10 i += 1 while r: s = C[i] + r r = s // 10 C[i] = s % 10 i += 1 if i - 1 > C[0]: C[0] += 1 def dif(A, B, C): C[:LG] = A[:LG] i = 1 while i <= C[0]: if C[i] >= B[i]: C[i] -= B[i] else: j = i + 1 while C[j] == 0: C[j] = 9 j += 1 C[j] -= 1 C[i] += 10 - B[i] i += 1 i = C[0] while i > 1 and C[i] == 0: i -= 1 C[0] = i def divide_mare_mic(a, b, c): x, i, j = 0, a[0], 0 y = [0] * LG while x < b and i > 0: x = x * 10 + a[i] i -= 1 x = x // 10 i += 1 while i > 0: x = x * 10 + a[i] y[j] = x // b x = x % b i -= 1 j += 1 if j == 0: c[0] = 1 c[1] = 0 else: c[0] = j for i, k in enumerate(range(j - 1, -1, -1), start=1): c[i] = y[k] def main(): nn, u, v = f.readline().split() u, v = int(u), int(v) n, nr1, nr2, nr3, nr4, nr5, nr = [0] * LG, [0] * LG, [0] * LG, [0] * LG, [0] * LG, [0] * LG, [0] * LG Set(n, nn) if not verifica_restrictii(n, u, v): return divide_mare_mic(n, u, nr1) divide_mare_mic(n, v, nr2) suma(nr1, nr2, nr3) divide_mare_mic(n, u * v, nr4) dif(nr3, nr4, nr5) dif(n, nr5, nr) scrie(nr) if __name__ == "__main__": with open("numere20IN.txt", "r") as f: 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