Tuesday, 30 November 2021

Insomnia cure Problem !!!

 PROBLEM 27: Insomnia cure


Problem reference: Codeforces


«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine.

However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and she was fighting them off. Every k-th dragon got punched in the face with a frying pan. Every l-th dragon got his tail shut into the balcony door. Every m-th dragon got his paws trampled with sharp heels. Finally, she threatened every n-th dragon to call her mom, and he withdrew in panic.

How many imaginary dragons suffered moral or physical damage tonight, if the princess counted a total of d dragons?


Input:

Input data contains integer numbers k, l, m, n and d, each number in a separate line (1 ≤ k, l, m, n ≤ 101 ≤ d ≤ 105).


Output:

Output the number of damaged dragons.


Solution: 


  1. k = int(input())
  2. l = int(input())
  3. m = int(input())
  4. n = int(input())
  5. d = int(input())
  6. d1 = 0
  7. for i in range(1,d+1):
  8. if i % k == 0 or i % l == 0 or i % m == 0 or i % n == 0:
  9. pass
  10. else:
  11. d1+=1
  12. print(d-d1)


This solution is in python language.



Examples
input
1
2
3
4
12
output
12
input
2
3
4
5
24
output
17

No comments:

Post a Comment

Rearrange an array with O(1) extra space

  PROBLEM 61:  Rearrange an array with O(1) extra space (For best view experience, view in windows version) Problem Reference : GeeksForGeek...